diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-06-26 21:08:29 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-06-26 21:08:29 (GMT) |
commit | acd71c8330ef7c9feb9da5a983a33f1b680ac83a (patch) | |
tree | b0a7e34e0a561c0496bab417b4da041ae5652552 /Source/cmBootstrapCommands.cxx | |
parent | ae47302529e9ee040a45ad9a8636e6116e880d0c (diff) | |
download | CMake-acd71c8330ef7c9feb9da5a983a33f1b680ac83a.zip CMake-acd71c8330ef7c9feb9da5a983a33f1b680ac83a.tar.gz CMake-acd71c8330ef7c9feb9da5a983a33f1b680ac83a.tar.bz2 |
COMP: fix bootstrapping
Alex
Diffstat (limited to 'Source/cmBootstrapCommands.cxx')
-rw-r--r-- | Source/cmBootstrapCommands.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmBootstrapCommands.cxx b/Source/cmBootstrapCommands.cxx index fae4596..bce5d45 100644 --- a/Source/cmBootstrapCommands.cxx +++ b/Source/cmBootstrapCommands.cxx @@ -67,6 +67,8 @@ #include "cmSetCommand.cxx" #include "cmSetPropertiesCommand.cxx" #include "cmSetSourceFilesPropertiesCommand.cxx" +#include "cmSetTargetPropertiesCommand.cxx" +#include "cmSetTestsPropertiesCommand.cxx" #include "cmSiteNameCommand.cxx" #include "cmStringCommand.cxx" #include "cmSubdirCommand.cxx" @@ -120,6 +122,8 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmSetCommand); commands.push_back(new cmSetPropertiesCommand); commands.push_back(new cmSetSourceFilesPropertiesCommand); + commands.push_back(new cmSetTargetPropertiesCommand); + commands.push_back(new cmSetTestsPropertiesCommand); commands.push_back(new cmSiteNameCommand); commands.push_back(new cmStringCommand); commands.push_back(new cmSubdirCommand); |