summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-02-27 21:49:33 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-02-27 21:49:33 (GMT)
commite14d38d3c8588261d40ca115784c8663321a90f6 (patch)
tree74c6e0ca46a658a9e93940afe9be9135ae69ab66 /Source/cmCommands.cxx
parenta91e3b515866b594930a2c91495cb2f6ff8d6a5c (diff)
downloadCMake-e14d38d3c8588261d40ca115784c8663321a90f6.zip
CMake-e14d38d3c8588261d40ca115784c8663321a90f6.tar.gz
CMake-e14d38d3c8588261d40ca115784c8663321a90f6.tar.bz2
added new commands
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index b693495..d60a929 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -30,7 +30,9 @@
#include "cmCabilInstantiateCommand.cxx"
#include "cmCabilInstantiateClassCommand.cxx"
#include "cmFindFileCommand.cxx"
+#include "cmWrapExcludeFilesCommand.cxx"
#include "cmWrapTclCommand.cxx"
+#include "cmBuildSharedLibrariesCommand.cxx"
void GetPredefinedCommands(std::list<cmCommand*>& commands)
{
@@ -59,7 +61,9 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmCabilInstantiateCommand);
commands.push_back(new cmCabilInstantiateClassCommand);
commands.push_back(new cmFindFileCommand);
+ commands.push_back(new cmWrapExcludeFilesCommand);
commands.push_back(new cmWrapTclCommand);
+ commands.push_back(new cmBuildSharedLibrariesCommand);
}