diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2011-03-10 20:56:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-03-15 19:07:37 (GMT) |
commit | 6b6f309c5f2fa5c327afb98ac57d0b9f4f79a980 (patch) | |
tree | c635515aeec5205a2ca99bef717b75fcc2743872 /Source/CTest/cmCTestUploadCommand.h | |
parent | 28cdd0a5be086004e5afedbbe5adb61be7adc9cc (diff) | |
download | CMake-6b6f309c5f2fa5c327afb98ac57d0b9f4f79a980.zip CMake-6b6f309c5f2fa5c327afb98ac57d0b9f4f79a980.tar.gz CMake-6b6f309c5f2fa5c327afb98ac57d0b9f4f79a980.tar.bz2 |
Add the FILES keyword to ctest_upload command
Diffstat (limited to 'Source/CTest/cmCTestUploadCommand.h')
-rw-r--r-- | Source/CTest/cmCTestUploadCommand.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestUploadCommand.h b/Source/CTest/cmCTestUploadCommand.h index b8c9d9f..6c2a4c2 100644 --- a/Source/CTest/cmCTestUploadCommand.h +++ b/Source/CTest/cmCTestUploadCommand.h @@ -59,7 +59,7 @@ public: virtual const char* GetFullDocumentation() { return - " ctest_upload(...)\n" + " ctest_upload(FILES ...)\n" "Pass a list of files to be sent along with the build results to " "the dashboard server.\n"; } @@ -72,6 +72,12 @@ protected: virtual bool CheckArgumentKeyword(std::string const& arg); virtual bool CheckArgumentValue(std::string const& arg); + enum + { + ArgumentDoingFiles = Superclass::ArgumentDoingLast1, + ArgumentDoingLast2 + }; + cmCTest::SetOfStrings Files; }; |