summaryrefslogtreecommitdiffstats
path: root/Source/cmBootstrapCommands.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2007-06-26 18:48:06 (GMT)
committerKen Martin <ken.martin@kitware.com>2007-06-26 18:48:06 (GMT)
commit571b3088d522da188448fc0cbe825fc9ee840609 (patch)
treea84d6055e60d6e61597d562e6d2777b2085ab3db /Source/cmBootstrapCommands.cxx
parent2504ffe8c370fb0c89bfe002226b28a7cb2244c6 (diff)
downloadCMake-571b3088d522da188448fc0cbe825fc9ee840609.zip
CMake-571b3088d522da188448fc0cbe825fc9ee840609.tar.gz
CMake-571b3088d522da188448fc0cbe825fc9ee840609.tar.bz2
ENH: add SetProperties into bootstrap
Diffstat (limited to 'Source/cmBootstrapCommands.cxx')
-rw-r--r--Source/cmBootstrapCommands.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmBootstrapCommands.cxx b/Source/cmBootstrapCommands.cxx
index c376b61..fae4596 100644
--- a/Source/cmBootstrapCommands.cxx
+++ b/Source/cmBootstrapCommands.cxx
@@ -65,6 +65,7 @@
#include "cmOptionCommand.cxx"
#include "cmProjectCommand.cxx"
#include "cmSetCommand.cxx"
+#include "cmSetPropertiesCommand.cxx"
#include "cmSetSourceFilesPropertiesCommand.cxx"
#include "cmSiteNameCommand.cxx"
#include "cmStringCommand.cxx"
@@ -117,6 +118,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmOptionCommand);
commands.push_back(new cmProjectCommand);
commands.push_back(new cmSetCommand);
+ commands.push_back(new cmSetPropertiesCommand);
commands.push_back(new cmSetSourceFilesPropertiesCommand);
commands.push_back(new cmSiteNameCommand);
commands.push_back(new cmStringCommand);