diff options
author | Brad King <brad.king@kitware.com> | 2013-06-05 13:39:05 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-06-05 13:39:05 (GMT) |
commit | 93317839b0aa7b47e37aad96ef3e0d4cfea236ba (patch) | |
tree | f01fec3a9f24ff5e7460ae25c8e4ac078371c2e0 /Source/cmCommands.cxx | |
parent | ff8917fdd2e8739a46c84ab03911258c23779744 (diff) | |
parent | a984f3257e95f29a72da6566859d4c6a8a5d749b (diff) | |
download | CMake-93317839b0aa7b47e37aad96ef3e0d4cfea236ba.zip CMake-93317839b0aa7b47e37aad96ef3e0d4cfea236ba.tar.gz CMake-93317839b0aa7b47e37aad96ef3e0d4cfea236ba.tar.bz2 |
Merge topic 'add_compile_options-command'
a984f32 Introduce add_compile_options command.
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 75f2ae8..3cfbf43 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -11,6 +11,7 @@ ============================================================================*/ #include "cmCommands.h" #if defined(CMAKE_BUILD_WITH_CMAKE) +#include "cmAddCompileOptionsCommand.cxx" #include "cmAuxSourceDirectoryCommand.cxx" #include "cmBuildNameCommand.cxx" #include "cmElseIfCommand.cxx" @@ -52,6 +53,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& ) { #if defined(CMAKE_BUILD_WITH_CMAKE) + commands.push_back(new cmAddCompileOptionsCommand); commands.push_back(new cmAuxSourceDirectoryCommand); commands.push_back(new cmBuildNameCommand); commands.push_back(new cmElseIfCommand); |