diff options
author | Brad King <brad.king@kitware.com> | 2013-01-10 15:22:46 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-01-10 15:22:46 (GMT) |
commit | 325e92fa22cb20a3d4bccbf1f663c28b34f8b04c (patch) | |
tree | e58332a81382395c002af3e0f64d3bed14046246 /Source/cmCommands.cxx | |
parent | feb9ffb6815b4367634a1543f42f50ae2f3c4c98 (diff) | |
parent | fc61a7a746c3c899d42ccff3014686365c36ee11 (diff) | |
download | CMake-325e92fa22cb20a3d4bccbf1f663c28b34f8b04c.zip CMake-325e92fa22cb20a3d4bccbf1f663c28b34f8b04c.tar.gz CMake-325e92fa22cb20a3d4bccbf1f663c28b34f8b04c.tar.bz2 |
Merge topic 'target-includes-defines-commands'
fc61a7a Add the target_compile_definitions command.
8a37ebe Add the target_include_directories command.
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 49ed967..227b226 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -28,6 +28,9 @@ #include "cmRemoveDefinitionsCommand.cxx" #include "cmSourceGroupCommand.cxx" #include "cmSubdirDependsCommand.cxx" +#include "cmTargetCompileDefinitionsCommand.cxx" +#include "cmTargetIncludeDirectoriesCommand.cxx" +#include "cmTargetPropCommandBase.cxx" #include "cmUseMangledMesaCommand.cxx" #include "cmUtilitySourceCommand.cxx" #include "cmVariableRequiresCommand.cxx" @@ -66,6 +69,8 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands.push_back(new cmRemoveDefinitionsCommand); commands.push_back(new cmSourceGroupCommand); commands.push_back(new cmSubdirDependsCommand); + commands.push_back(new cmTargetIncludeDirectoriesCommand); + commands.push_back(new cmTargetCompileDefinitionsCommand); commands.push_back(new cmUseMangledMesaCommand); commands.push_back(new cmUtilitySourceCommand); commands.push_back(new cmVariableRequiresCommand); |