diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-15 17:58:10 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-15 17:58:10 (GMT) |
commit | 504d0bc3b38574d8394995b589214ce9cb0f6d3a (patch) | |
tree | ab49a624e100b25ca9ea5bb48624cc8d2e110857 /Source/cmCommands.cxx | |
parent | a5c3087360b79132c7e3c5004e6a9d14c7e62805 (diff) | |
download | CMake-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.cxx | 2 |
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); |