[cmake-commits] king committed CTest.cmake 1.7 1.8 Dart.cmake 1.69 1.70

cmake-commits at cmake.org cmake-commits at cmake.org
Tue May 15 10:23:42 EDT 2007


Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv22268

Modified Files:
	CTest.cmake Dart.cmake 
Log Message:
STYLE: Added basic usage documentation.


Index: Dart.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/Dart.cmake,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- Dart.cmake	10 Apr 2007 18:54:48 -0000	1.69
+++ Dart.cmake	15 May 2007 14:23:40 -0000	1.70
@@ -1,8 +1,18 @@
-# - setup for using Dart.
+# - Configure a project for testing with CTest or old Dart Tcl Client
+# This file is the backwards-compatibility version of the CTest module.
+# It supports using the old Dart 1 Tcl client for driving dashboard
+# submissions as well as testing with CTest.  This module should be included
+# in the CMakeLists.txt file at the top of a project.  Typical usage:
+#  INCLUDE(Dart)
+#  IF(BUILD_TESTING)
+#    # ... testing related CMake code ...
+#  ENDIF(BUILD_TESTING)
+# The BUILD_TESTING option is created by the Dart module to determine
+# whether testing support should be enabled.  The default is ON.
+
 # This file configures a project to use the Dart testing/dashboard process.
 # It is broken into 3 sections.
-
-# 
+#
 #  Section #1: Locate programs on the client and determine site and build name
 #  Section #2: Configure or copy Tcl scripts from the source tree to build tree
 #  Section #3: Custom targets for performing dashboard builds.

Index: CTest.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CTest.cmake,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- CTest.cmake	28 Jun 2006 19:15:01 -0000	1.7
+++ CTest.cmake	15 May 2007 14:23:40 -0000	1.8
@@ -1,6 +1,14 @@
-# - setup CTest 
+# - Configure a project for testing with CTest/Dart
 # This file configures a project to use the CTest/Dart
-# testing/dashboard process.  
+# testing/dashboard process.  This module should be included
+# in the CMakeLists.txt file at the top of a project.  Typical usage:
+#  INCLUDE(CTest)
+#  IF(BUILD_TESTING)
+#    # ... testing related CMake code ...
+#  ENDIF(BUILD_TESTING)
+# The BUILD_TESTING option is created by the CTest module to determine
+# whether testing support should be enabled.  The default is ON.
+
 OPTION(BUILD_TESTING "Build the testing tree." ON)
 
 IF(BUILD_TESTING)



More information about the Cmake-commits mailing list