diff options
author | Brad King <brad.king@kitware.com> | 2006-04-19 14:50:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-04-19 14:50:15 (GMT) |
commit | 37bff40d5da3ef03e80e7a7ea4a05099b05861f4 (patch) | |
tree | 84d5d2fb32fa5168a846a52a36ff83813a614732 /Source/cmBootstrapCommands.cxx | |
parent | 864c0292d5e7ddc82d97676b3b371a0eadbb1c09 (diff) | |
download | CMake-37bff40d5da3ef03e80e7a7ea4a05099b05861f4.zip CMake-37bff40d5da3ef03e80e7a7ea4a05099b05861f4.tar.gz CMake-37bff40d5da3ef03e80e7a7ea4a05099b05861f4.tar.bz2 |
BUG: Need ADD_DEPENDENCIES command for MinGW bootstrap since kwsys uses the Win32 implementation of process execution.
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 7eafd34..a25da04 100644 --- a/Source/cmBootstrapCommands.cxx +++ b/Source/cmBootstrapCommands.cxx @@ -22,6 +22,7 @@ #include "cmAddCustomCommandCommand.cxx" #include "cmAddCustomTargetCommand.cxx" #include "cmAddDefinitionsCommand.cxx" +#include "cmAddDependenciesCommand.cxx" #include "cmAddExecutableCommand.cxx" #include "cmAddLibraryCommand.cxx" #include "cmAddTestCommand.cxx" @@ -71,6 +72,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmAddCustomCommandCommand); commands.push_back(new cmAddCustomTargetCommand); commands.push_back(new cmAddDefinitionsCommand); + commands.push_back(new cmAddDependenciesCommand); commands.push_back(new cmAddExecutableCommand); commands.push_back(new cmAddLibraryCommand); commands.push_back(new cmAddTestCommand); |