diff options
author | Brad King <brad.king@kitware.com> | 2007-05-15 14:23:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-05-15 14:23:40 (GMT) |
commit | 93b94ce443e2fecfa0cef7edb353f76b33afd843 (patch) | |
tree | 5fb8eefceed78a72f7b889e4c20a6c3664a5c68d /Modules/Dart.cmake | |
parent | d940b667f80f7828cfc48815de135a36b59b2462 (diff) | |
download | CMake-93b94ce443e2fecfa0cef7edb353f76b33afd843.zip CMake-93b94ce443e2fecfa0cef7edb353f76b33afd843.tar.gz CMake-93b94ce443e2fecfa0cef7edb353f76b33afd843.tar.bz2 |
STYLE: Added basic usage documentation.
Diffstat (limited to 'Modules/Dart.cmake')
-rw-r--r-- | Modules/Dart.cmake | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/Modules/Dart.cmake b/Modules/Dart.cmake index a463d13..6d0f86d 100644 --- a/Modules/Dart.cmake +++ b/Modules/Dart.cmake @@ -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. |