diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-10-19 08:54:18 +0200 |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-10-21 18:14:50 +0200 |
commit | f69e768d94ff5e0238cbb924836737c4ce11a930 (patch) | |
tree | 88d4d5f0725b81517779456a6a2c9dd9136a5297 /Source/cmTargetCompileDefinitionsCommand.h | |
parent | 1e555a44aa4e3d40bca2f88915c9f957098e5a55 (diff) | |
download | cmake-f69e768d94ff5e0238cbb924836737c4ce11a930.tar.gz |
Separate compilation for commands included in cmCommands
Diffstat (limited to 'Source/cmTargetCompileDefinitionsCommand.h')
-rw-r--r-- | Source/cmTargetCompileDefinitionsCommand.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmTargetCompileDefinitionsCommand.h b/Source/cmTargetCompileDefinitionsCommand.h index b49f6162da..69edfb2121 100644 --- a/Source/cmTargetCompileDefinitionsCommand.h +++ b/Source/cmTargetCompileDefinitionsCommand.h @@ -3,7 +3,16 @@ #ifndef cmTargetCompileDefinitionsCommand_h #define cmTargetCompileDefinitionsCommand_h +#include <cmConfigure.h> +#include <string> +#include <vector> + #include "cmTargetPropCommandBase.h" +#include "cmTypeMacro.h" + +class cmCommand; +class cmExecutionStatus; +class cmTarget; class cmTargetCompileDefinitionsCommand : public cmTargetPropCommandBase { |