summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestBuildCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-02-20 20:51:03 (GMT)
committerBrad King <brad.king@kitware.com>2009-02-20 20:51:03 (GMT)
commit31e652059a1ccd86fb6ae26036bb0714e55fd2bb (patch)
treecdaf95429ff156646d73dd93341919f5b893895b /Source/CTest/cmCTestBuildCommand.h
parentab1b9b45ff0940e37fe31380957ef970a70350bf (diff)
downloadCMake-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/cmCTestBuildCommand.h')
-rw-r--r--Source/CTest/cmCTestBuildCommand.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestBuildCommand.h b/Source/CTest/cmCTestBuildCommand.h
index 18e23d7..86f5980 100644
--- a/Source/CTest/cmCTestBuildCommand.h
+++ b/Source/CTest/cmCTestBuildCommand.h
@@ -65,7 +65,7 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " ctest_build([BUILD build_dir] [RETURN_VALUE res]\n"
+ " ctest_build([BUILD build_dir] [RETURN_VALUE res] [APPEND]\n"
" [NUMBER_ERRORS val] [NUMBER_WARNINGS val])\n"
"Builds the given build directory and stores results in Build.xml. "
"If no BUILD is given, the CTEST_BINARY_DIRECTORY variable is used. "
@@ -73,7 +73,8 @@ public:
"return value of the native build tool. "
"The NUMBER_ERRORS and NUMBER_WARNINGS options specify variables in "
"which to store the number of build errors and warnings detected."
- ;
+ "\n"
+ CTEST_COMMAND_APPEND_OPTION_DOCS;
}
cmTypeMacro(cmCTestBuildCommand, cmCTestHandlerCommand);