diff options
author | Brad King <brad.king@kitware.com> | 2007-03-03 17:16:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-03-03 17:16:35 (GMT) |
commit | bdc4974f882786311a456c0e245360e2a66e6257 (patch) | |
tree | 11de4503fda2e8b561731a0723e3f2221a469008 /Source/cmBootstrapCommands.cxx | |
parent | 0edbb68352475ae48dd31dde7384dd0816a8fb39 (diff) | |
download | CMake-bdc4974f882786311a456c0e245360e2a66e6257.zip CMake-bdc4974f882786311a456c0e245360e2a66e6257.tar.gz CMake-bdc4974f882786311a456c0e245360e2a66e6257.tar.bz2 |
BUG: cmCreateTestSourceList command is needed at boostrap time because KWSys now uses test drivers.
Diffstat (limited to 'Source/cmBootstrapCommands.cxx')
-rw-r--r-- | Source/cmBootstrapCommands.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmBootstrapCommands.cxx b/Source/cmBootstrapCommands.cxx index a25da04..57654aa 100644 --- a/Source/cmBootstrapCommands.cxx +++ b/Source/cmBootstrapCommands.cxx @@ -29,6 +29,7 @@ #include "cmBuildCommand.cxx" #include "cmCMakeMinimumRequired.cxx" #include "cmConfigureFileCommand.cxx" +#include "cmCreateTestSourceList.cxx" #include "cmElseCommand.cxx" #include "cmEnableTestingCommand.cxx" #include "cmEndForEachCommand.cxx" @@ -79,6 +80,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmBuildCommand); commands.push_back(new cmCMakeMinimumRequired); commands.push_back(new cmConfigureFileCommand); + commands.push_back(new cmCreateTestSourceList); commands.push_back(new cmElseCommand); commands.push_back(new cmEnableTestingCommand); commands.push_back(new cmEndForEachCommand); |