diff options
author | Brad King <brad.king@kitware.com> | 2009-02-20 20:51:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-02-20 20:51:03 (GMT) |
commit | 31e652059a1ccd86fb6ae26036bb0714e55fd2bb (patch) | |
tree | cdaf95429ff156646d73dd93341919f5b893895b /Source/CTest/cmCTestConfigureCommand.h | |
parent | ab1b9b45ff0940e37fe31380957ef970a70350bf (diff) | |
download | CMake-31e652059a1ccd86fb6ae26036bb0714e55fd2bb.zip CMake-31e652059a1ccd86fb6ae26036bb0714e55fd2bb.tar.gz CMake-31e652059a1ccd86fb6ae26036bb0714e55fd2bb.tar.bz2 |
ENH: Document APPEND option in ctest_* commands
This adds documentation of the APPEND option to the configure, build,
test, memcheck, and coverage commands. The docs leave specific
semantics for the dashboard server to define.
Diffstat (limited to 'Source/CTest/cmCTestConfigureCommand.h')
-rw-r--r-- | Source/CTest/cmCTestConfigureCommand.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestConfigureCommand.h b/Source/CTest/cmCTestConfigureCommand.h index b0210d2..3c15658 100644 --- a/Source/CTest/cmCTestConfigureCommand.h +++ b/Source/CTest/cmCTestConfigureCommand.h @@ -59,7 +59,7 @@ public: virtual const char* GetFullDocumentation() { return - " ctest_configure([BUILD build_dir] [SOURCE source_dir]\n" + " ctest_configure([BUILD build_dir] [SOURCE source_dir] [APPEND]\n" " [OPTIONS options] [RETURN_VALUE res])\n" "Configures the given build directory and stores results in " "Configure.xml. " @@ -69,7 +69,8 @@ public: "the configuration tool. " "The RETURN_VALUE option specifies a variable in which to store the " "return value of the native build tool." - ; + "\n" + CTEST_COMMAND_APPEND_OPTION_DOCS; } cmTypeMacro(cmCTestConfigureCommand, cmCTestHandlerCommand); |