diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-02-16 18:05:03 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-02-16 18:05:03 (GMT) |
commit | 22927ede1e74e43ad78699ff4082d8b78e50599c (patch) | |
tree | 6f6bd3e1613623e7f9e7356ef798a02fe553df84 /Source/cmBootstrapCommands.cxx | |
parent | 337c1f0b7230d6b0b4674d1d7168eef5a6dce6cd (diff) | |
download | CMake-22927ede1e74e43ad78699ff4082d8b78e50599c.zip CMake-22927ede1e74e43ad78699ff4082d8b78e50599c.tar.gz CMake-22927ede1e74e43ad78699ff4082d8b78e50599c.tar.bz2 |
ENH: support for cpack and install of cmake-gui as mac app bundle
Diffstat (limited to 'Source/cmBootstrapCommands.cxx')
-rw-r--r-- | Source/cmBootstrapCommands.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmBootstrapCommands.cxx b/Source/cmBootstrapCommands.cxx index af9bf3d..e7c0d2e 100644 --- a/Source/cmBootstrapCommands.cxx +++ b/Source/cmBootstrapCommands.cxx @@ -66,6 +66,8 @@ #include "cmIncludeDirectoryCommand.cxx" #include "cmIncludeRegularExpressionCommand.cxx" #include "cmInstallFilesCommand.cxx" +#include "cmInstallCommandArguments.cxx" +#include "cmInstallCommand.cxx" #include "cmInstallTargetsCommand.cxx" #include "cmLinkDirectoriesCommand.cxx" #include "cmListCommand.cxx" @@ -132,6 +134,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmIncludeCommand); commands.push_back(new cmIncludeDirectoryCommand); commands.push_back(new cmIncludeRegularExpressionCommand); + commands.push_back(new cmInstallCommand); commands.push_back(new cmInstallFilesCommand); commands.push_back(new cmInstallTargetsCommand); commands.push_back(new cmLinkDirectoriesCommand); |