diff options
author | Daniel Eiband <daniel.eiband@brainlab.com> | 2019-09-20 22:55:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-09-26 14:03:48 (GMT) |
commit | ea1bed34b2ba16f3971b90996dc345834f0d9699 (patch) | |
tree | cfcb9a2911b889f4b8831e5ff1f666d6679d1ae2 /Source/cmCustomCommandTypes.h | |
parent | 91abf9f3c4a80f5a8417401d5277b3b66bc7d008 (diff) | |
download | CMake-ea1bed34b2ba16f3971b90996dc345834f0d9699.zip CMake-ea1bed34b2ba16f3971b90996dc345834f0d9699.tar.gz CMake-ea1bed34b2ba16f3971b90996dc345834f0d9699.tar.bz2 |
cmMakefile: Extract utilities used for creation of custom commands
Decompose creation of custom commands further into logical steps.
Diffstat (limited to 'Source/cmCustomCommandTypes.h')
-rw-r--r-- | Source/cmCustomCommandTypes.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmCustomCommandTypes.h b/Source/cmCustomCommandTypes.h index f3ecd6e..d4bf1f9 100644 --- a/Source/cmCustomCommandTypes.h +++ b/Source/cmCustomCommandTypes.h @@ -5,6 +5,8 @@ #include "cmConfigure.h" // IWYU pragma: keep +#include <string> + /** Target custom command type */ enum class cmCustomCommandType { @@ -27,4 +29,11 @@ enum class cmObjectLibraryCommands Accept }; +/** Utility target output source file name. */ +struct cmUtilityOutput +{ + std::string Name; + std::string NameCMP0049; +}; + #endif |