summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-15 17:58:10 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-15 17:58:10 (GMT)
commit504d0bc3b38574d8394995b589214ce9cb0f6d3a (patch)
treeab49a624e100b25ca9ea5bb48624cc8d2e110857 /Source/cmCommands.cxx
parenta5c3087360b79132c7e3c5004e6a9d14c7e62805 (diff)
downloadCMake-504d0bc3b38574d8394995b589214ce9cb0f6d3a.zip
CMake-504d0bc3b38574d8394995b589214ce9cb0f6d3a.tar.gz
CMake-504d0bc3b38574d8394995b589214ce9cb0f6d3a.tar.bz2
ENH: ADD REMOVE_DEFINITION command. Fix feature request: Bug #182 - Add opposite to ADD_DEFINITIONS
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 9671bb6..4a7417a 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -58,6 +58,7 @@
#include "cmMessageCommand.cxx"
#include "cmOptionCommand.cxx"
#include "cmProjectCommand.cxx"
+#include "cmRemoveDefinitionsCommand.cxx"
#include "cmSeparateArgumentsCommand.cxx"
#include "cmSetCommand.cxx"
#include "cmSetSourceFilesPropertiesCommand.cxx"
@@ -150,6 +151,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmMessageCommand);
commands.push_back(new cmOptionCommand);
commands.push_back(new cmProjectCommand);
+ commands.push_back(new cmRemoveDefinitionsCommand);
commands.push_back(new cmSeparateArgumentsCommand);
commands.push_back(new cmSetCommand);
commands.push_back(new cmSetSourceFilesPropertiesCommand);