summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorJohn Biddiscombe <jbiddiscombe@skippingmouse.co.uk>2001-06-22 13:58:13 (GMT)
committerJohn Biddiscombe <jbiddiscombe@skippingmouse.co.uk>2001-06-22 13:58:13 (GMT)
commit348d1994ac14f4812e287abbfde95b731a801745 (patch)
tree5c5ba01ee79b71f53d45e00a1b35569d5c041fac /Source/cmCommands.cxx
parente1e7b8adcafed947de7845b82420634d3b302268 (diff)
downloadCMake-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.cxx10
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
}
-
+