summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-06-05 13:39:05 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-06-05 13:39:05 (GMT)
commit93317839b0aa7b47e37aad96ef3e0d4cfea236ba (patch)
treef01fec3a9f24ff5e7460ae25c8e4ac078371c2e0 /Source/cmCommands.cxx
parentff8917fdd2e8739a46c84ab03911258c23779744 (diff)
parenta984f3257e95f29a72da6566859d4c6a8a5d749b (diff)
downloadCMake-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.cxx2
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);