Revision: 38941
          http://brlcad.svn.sourceforge.net/brlcad/?rev=38941&view=rev
Author:   davidloman
Date:     2010-05-03 11:28:53 +0000 (Mon, 03 May 2010)

Log Message:
-----------
Changed CMAKE variable 'COMPILE_UNIT_TESTS' to 'RT3_BUILD_TESTS' for variable 
standardization.

Modified Paths:
--------------
    rt^3/trunk/CMakeLists.txt

Modified: rt^3/trunk/CMakeLists.txt
===================================================================
--- rt^3/trunk/CMakeLists.txt   2010-05-03 11:25:19 UTC (rev 38940)
+++ rt^3/trunk/CMakeLists.txt   2010-05-03 11:28:53 UTC (rev 38941)
@@ -70,7 +70,7 @@
 SET (RT3_VERBOSE_CMAKE_OUTPUT OFF CACHE BOOL "Verbose cmake output. When Set 
to ON, each project will print its include paths and libraries required for 
linking.")
 
 #Setup unit testing compilation flag
-SET (COMPILE_UNIT_TESTS OFF CACHE BOOL "Compile the Unit test suite?")
+SET (RT3_BUILD_TESTS OFF CACHE BOOL "Compile the Unit test suite?")
 
 MESSAGE(STATUS "Finding Required Dependancies...")
 
@@ -93,13 +93,13 @@
 ENDIF (NOT BRLCAD_FOUND)
 
 #Find CPPUNIT if needed.
-#IF (COMPILE_UNIT_TESTS)
+#IF (RT3_BUILD_TESTS)
 #      FIND_PACKAGE ( CPPUNIT REQUIRED )
 #      IF (NOT CPPUNIT_FOUND)
 #        MESSAGE(STATUS "\tDid not find CPPUNIT!")
 #          RETURN()
 #    ENDIF (NOT CPPUNIT_FOUND)
-#ENDIF (COMPILE_UNIT_TESTS)
+#ENDIF (RT3_BUILD_TESTS)
 
 #Search for QT4
 MESSAGE(STATUS "\tSearching for QT4...")
@@ -130,12 +130,12 @@
 MESSAGE(STATUS "")
 
 #Decend into the test tree.
-IF (COMPILE_UNIT_TESTS)
+IF (RT3_BUILD_TESTS)
     MESSAGE(STATUS "Configuring Tests...")
        ADD_SUBDIRECTORY(./tests)
        MESSAGE(STATUS "All Tests configured.")
     MESSAGE(STATUS "")
-ENDIF (COMPILE_UNIT_TESTS)
+ENDIF (RT3_BUILD_TESTS)
 
 #################################
 INCLUDE (./cmake/PrintFooter.cmake)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to