Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[Manta] r1774 - trunk


Chronological Thread 
  • From: bigler@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [Manta] r1774 - trunk
  • Date: Thu, 11 Oct 2007 15:20:49 -0600 (MDT)

Author: bigler
Date: Thu Oct 11 15:20:49 2007
New Revision: 1774

Modified:
   trunk/CMakeLists.txt
Log:
CMakeLists.txt

  Only enable testing if BUILD_TESTING is on.

  Export library dependencies to a file that can be read by someone
  else.


Modified: trunk/CMakeLists.txt
==============================================================================
--- trunk/CMakeLists.txt        (original)
+++ trunk/CMakeLists.txt        Thu Oct 11 15:20:49 2007
@@ -13,7 +13,11 @@
 PROJECT (Manta)
 
 INCLUDE(CTest)
-ENABLE_TESTING()
+IF(BUILD_TESTING)
+  ENABLE_TESTING()
+  SET(BUILDNAME "${BUILDNAME}" CACHE STRING "Name of build on the dashboard")
+  MARK_AS_ADVANCED(BUILDNAME)
+ENDIF(BUILD_TESTING)
 
 SET(DEFAULT_BUILD_SHARED_LIBS ON)
 IF (CYGWIN)
@@ -133,6 +137,14 @@
 
 SET(BUILD_NRRDPARTICLES 0 CACHE BOOL "Build NRRD particle data reader/scene")
 SUBDIRS_IF(BUILD_DYNLT "Lazily evaluated LTs for NRRD particle datasets" 
DynLT)
+
+###############################################################################
+###############################################################################
+# Export some information on the libraries
+###############################################################################
+###############################################################################
+
+EXPORT_LIBRARY_DEPENDENCIES(MantaConfigure.cmake)
 
 
###############################################################################
 
###############################################################################




  • [Manta] r1774 - trunk, bigler, 10/11/2007

Archive powered by MHonArc 2.6.16.

Top of page