summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-05-23 15:31:43 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-05-23 15:31:43 (GMT)
commitdbebd0a276490134b9df38cc3c69b1104f2ea71a (patch)
tree5fe00a12d37fad05dfc91ceef58d6ef3e5763d27 /Source/cmCommands.cxx
parentfdb3d30dca08b90b8db5186fb8bcdc424984d6db (diff)
downloadCMake-dbebd0a276490134b9df38cc3c69b1104f2ea71a.zip
CMake-dbebd0a276490134b9df38cc3c69b1104f2ea71a.tar.gz
CMake-dbebd0a276490134b9df38cc3c69b1104f2ea71a.tar.bz2
added install rules
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 91872fa..ad2c57e 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -39,6 +39,8 @@
#include "cmIncludeCommand.cxx"
#include "cmIncludeDirectoryCommand.cxx"
#include "cmIncludeRegularExpressionCommand.cxx"
+#include "cmInstallFilesCommand.cxx"
+#include "cmInstallTargetsCommand.cxx"
#include "cmLinkDirectoriesCommand.cxx"
#include "cmLinkLibrariesCommand.cxx"
#include "cmLoadCacheCommand.cxx"
@@ -93,6 +95,8 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmIncludeCommand);
commands.push_back(new cmIncludeDirectoryCommand);
commands.push_back(new cmIncludeRegularExpressionCommand);
+ commands.push_back(new cmInstallFilesCommand);
+ commands.push_back(new cmInstallTargetsCommand);
commands.push_back(new cmLinkDirectoriesCommand);
commands.push_back(new cmLinkLibrariesCommand);
commands.push_back(new cmLoadCacheCommand);