diff options
author | John Biddiscombe <jbiddiscombe@skippingmouse.co.uk> | 2001-06-22 13:58:13 (GMT) |
---|---|---|
committer | John Biddiscombe <jbiddiscombe@skippingmouse.co.uk> | 2001-06-22 13:58:13 (GMT) |
commit | 348d1994ac14f4812e287abbfde95b731a801745 (patch) | |
tree | 5c5ba01ee79b71f53d45e00a1b35569d5c041fac /Source/cmCommands.cxx | |
parent | e1e7b8adcafed947de7845b82420634d3b302268 (diff) | |
download | CMake-348d1994ac14f4812e287abbfde95b731a801745.zip CMake-348d1994ac14f4812e287abbfde95b731a801745.tar.gz CMake-348d1994ac14f4812e287abbfde95b731a801745.tar.bz2 |
ENH: Added new command SOURCE_FILES_REMOVE which can be used
to take files out of the build. Especially useful when certain compilers choke on the
odd file.
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 3df9685..d09121e 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -42,6 +42,7 @@ #include "cmSetCommand.cxx" #include "cmSiteNameCommand.cxx" #include "cmSourceFilesCommand.cxx" +#include "cmSourceFilesRemoveCommand.cxx" #include "cmSourceGroupCommand.cxx" #include "cmSubdirCommand.cxx" #include "cmTargetLinkLibrariesCommand.cxx" @@ -50,6 +51,9 @@ #include "cmVTKWrapPythonCommand.cxx" #include "cmVTKWrapTclCommand.cxx" #include "cmWrapExcludeFilesCommand.cxx" +// Begin Special JB addition +#include "cmVTKWrapGUICommand.cxx" +// End Special JB addition void GetPredefinedCommands(std::list<cmCommand*>& commands) { @@ -92,6 +96,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmSetCommand); commands.push_back(new cmSiteNameCommand); commands.push_back(new cmSourceFilesCommand); + commands.push_back(new cmSourceFilesRemoveCommand); commands.push_back(new cmSourceGroupCommand); commands.push_back(new cmSubdirCommand); commands.push_back(new cmTargetLinkLibrariesCommand); @@ -100,6 +105,9 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmVTKWrapPythonCommand); commands.push_back(new cmVTKWrapTclCommand); commands.push_back(new cmWrapExcludeFilesCommand); +// Begin Special JB addition + commands.push_back(new cmVTKWrapGUICommand); +// End Special JB addition } - + |