summaryrefslogtreecommitdiffstats
path: root/Source/cmBootstrapCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-12-18 19:56:30 (GMT)
committerBrad King <brad.king@kitware.com>2008-12-18 19:56:30 (GMT)
commit0c85e2e6278d911c9fc7cbc00ac77413e8f21a9b (patch)
treed43b542aaa6aa56bb5e25f8662f333a5af9da085 /Source/cmBootstrapCommands.cxx
parent64f419c0e85f9929687c4c159930c8398a299854 (diff)
downloadCMake-0c85e2e6278d911c9fc7cbc00ac77413e8f21a9b.zip
CMake-0c85e2e6278d911c9fc7cbc00ac77413e8f21a9b.tar.gz
CMake-0c85e2e6278d911c9fc7cbc00ac77413e8f21a9b.tar.bz2
COMP: Add set_directory_properties to bootstrap
We now need this command in the Tests/CMakeLists.txt file.
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 f14b024..77e831e 100644
--- a/Source/cmBootstrapCommands.cxx
+++ b/Source/cmBootstrapCommands.cxx
@@ -82,6 +82,7 @@
#include "cmReturnCommand.cxx"
#include "cmSeparateArgumentsCommand.cxx"
#include "cmSetCommand.cxx"
+#include "cmSetDirectoryPropertiesCommand.cxx"
#include "cmSetPropertyCommand.cxx"
#include "cmSetSourceFilesPropertiesCommand.cxx"
#include "cmSetTargetPropertiesCommand.cxx"
@@ -153,6 +154,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmReturnCommand);
commands.push_back(new cmSeparateArgumentsCommand);
commands.push_back(new cmSetCommand);
+ commands.push_back(new cmSetDirectoryPropertiesCommand);
commands.push_back(new cmSetPropertyCommand);
commands.push_back(new cmSetSourceFilesPropertiesCommand);
commands.push_back(new cmSetTargetPropertiesCommand);