diff options
author | Brad King <brad.king@kitware.com> | 2017-05-12 13:13:48 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-05-12 13:13:51 (GMT) |
commit | 836cb52e9aec83f88841cb5b45abb1d32bb02214 (patch) | |
tree | 7c8abd2596179f3e7de96a92c0be095dbab2e008 /Source/CTest/cmCTestHandlerCommand.h | |
parent | 793b223c02bfbb9d5bd03194a7f9748f6cecf2f2 (diff) | |
parent | a1218f59d9164407c6e28f816b0f11314b64fe5c (diff) | |
download | CMake-836cb52e9aec83f88841cb5b45abb1d32bb02214.zip CMake-836cb52e9aec83f88841cb5b45abb1d32bb02214.tar.gz CMake-836cb52e9aec83f88841cb5b45abb1d32bb02214.tar.bz2 |
Merge topic 'command-name'
a1218f59 cmCommand: remove unused methods from interface and all implementations
4ba25a82 cmState: separate builtin and scripted commands
a44dab46 cmState: introduce method for adding scripted commands
c734c850 CTest: use new methods for builtin commands
bd14e464 cmCommands: use new methods for builtin commands
58708405 cmState: introduce methods for adding builtin commands
a890ca2f cmakemain: use script role for -P
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !829
Diffstat (limited to 'Source/CTest/cmCTestHandlerCommand.h')
-rw-r--r-- | Source/CTest/cmCTestHandlerCommand.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestHandlerCommand.h b/Source/CTest/cmCTestHandlerCommand.h index adc1687..0ea0612 100644 --- a/Source/CTest/cmCTestHandlerCommand.h +++ b/Source/CTest/cmCTestHandlerCommand.h @@ -25,6 +25,11 @@ public: cmCTestHandlerCommand(); /** + * The name of the command as specified in CMakeList.txt. + */ + virtual std::string GetName() const = 0; + + /** * This is called when the command is first encountered in * the CMakeLists.txt file. */ |