[Kst] branches/work/kst/portto4/kst

Peter Kümmel syntheticpp at gmx.net
Wed Jan 12 15:52:26 CET 2011


SVN commit 1214008 by kuemmel:

cmake: because me call  make test  as option name kst_test is  better

 M  +1 -1      INSTALL  
 M  +2 -2      cmake/CMakeLists.txt  


--- branches/work/kst/portto4/kst/INSTALL #1214007:1214008
@@ -109,7 +109,7 @@
 	-- kst_install_prefix       = OFF    : Install path for Kst, using a default if not set
 	-- kst_console              = OFF    : Open console on Windows
 	-- kst_3rdparty             = ON     : Build plugins depending on 3rd party libraries
-	-- kst_tests                = OFF    : Build unit tests
+	-- kst_test                 = OFF    : Build unit tests
 
 	
 	To enable a option pass the value ON or 1, eg
--- branches/work/kst/portto4/kst/cmake/CMakeLists.txt #1214007:1214008
@@ -24,7 +24,7 @@
 kst_option(install_prefix "Install path for Kst, using a default if not set" OFF all)
 kst_option(console "Open console on Windows" OFF win)
 kst_option(3rdparty "Build plugins depending on 3rd party libraries" ON all)
-kst_option(tests "Build unit tests" OFF all)
+kst_option(test "Build unit tests" OFF all)
 
 
 message(STATUS)
@@ -125,7 +125,7 @@
 
 
 add_subdirectory(src)
-if(kst_tests)
+if(kst_test)
 	enable_testing()
 	add_subdirectory(tests)
 endif()


More information about the Kst mailing list