summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestConfigureCommand.h
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2019-09-26 13:22:00 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-09-26 13:22:13 (GMT)
commit67e6b55c5885c445b5b78b41a66529553dcab069 (patch)
treeb81531ae84bc02bfe7abe2e3c93fcaf4eb705dfb /Source/CTest/cmCTestConfigureCommand.h
parentb42cb1ff80dc056da4036c7b65109d1a77d84bf4 (diff)
parent0aa8a2ab8b00c0889df3d0fa1be47ad5a0b9db22 (diff)
downloadCMake-67e6b55c5885c445b5b78b41a66529553dcab069.zip
CMake-67e6b55c5885c445b5b78b41a66529553dcab069.tar.gz
CMake-67e6b55c5885c445b5b78b41a66529553dcab069.tar.bz2
Merge topic 'ctest-argument-parser'
0aa8a2ab8b cmCTest*Command: Port to cmArgumentParser d5a6a13368 cmArgumentParser: Record parsed keywords Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3835
Diffstat (limited to 'Source/CTest/cmCTestConfigureCommand.h')
-rw-r--r--Source/CTest/cmCTestConfigureCommand.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/Source/CTest/cmCTestConfigureCommand.h b/Source/CTest/cmCTestConfigureCommand.h
index 36ca7d5..0bc7848 100644
--- a/Source/CTest/cmCTestConfigureCommand.h
+++ b/Source/CTest/cmCTestConfigureCommand.h
@@ -23,8 +23,6 @@ class cmCTestGenericHandler;
class cmCTestConfigureCommand : public cmCTestHandlerCommand
{
public:
- cmCTestConfigureCommand();
-
/**
* This is a virtual constructor for the command.
*/
@@ -42,14 +40,10 @@ public:
std::string GetName() const override { return "ctest_configure"; }
protected:
+ void BindArguments() override;
cmCTestGenericHandler* InitializeHandler() override;
- enum
- {
- ctc_FIRST = ct_LAST,
- ctc_OPTIONS,
- ctc_LAST
- };
+ std::string Options;
};
#endif