[cmake-commits] king committed CTestTargets.cmake 1.3 1.4
cmake-commits at cmake.org
cmake-commits at cmake.org
Thu Feb 14 13:36:25 EST 2008
Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv25557/Modules
Modified Files:
CTestTargets.cmake
Log Message:
ENH: Updated DEFINE_PROPERTY command to be more extendible and more consistent with new SET_PROPERTY and GET_PROPERTY signatures.
Index: CTestTargets.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CTestTargets.cmake,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- CTestTargets.cmake 14 Feb 2008 16:58:32 -0000 1.3
+++ CTestTargets.cmake 14 Feb 2008 18:36:22 -0000 1.4
@@ -37,10 +37,10 @@
# Add convenience targets. Do this at most once in case of nested
# projects.
-DEFINE_PROPERTY(CTEST_TARGETS_ADDED GLOBAL
- "Internal property used by CTestTargets module."
- "Set by the CTestTargets module to track addition of testing targets."
- FALSE)
+DEFINE_PROPERTY(GLOBAL PROPERTY CTEST_TARGETS_ADDED
+ BRIEF_DOCS "Internal property used by CTestTargets module."
+ FULL_DOCS "Set by the CTestTargets module to track addition of testing targets."
+ )
GET_PROPERTY(_CTEST_TARGETS_ADDED GLOBAL PROPERTY CTEST_TARGETS_ADDED)
IF(NOT _CTEST_TARGETS_ADDED)
SET_PROPERTY(GLOBAL PROPERTY CTEST_TARGETS_ADDED 1)
More information about the Cmake-commits
mailing list