diff options
author | Brad King <brad.king@kitware.com> | 2010-12-30 17:59:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-12-30 17:59:57 (GMT) |
commit | 971692c0559ad908f7a1177fbe62d273945601db (patch) | |
tree | 0329e5824a04d2714f1b5aa2bf91fdec49b00ce3 /Source/cmBootstrapCommands.cxx | |
parent | 960ace1e0b5e1b4c699304b01c465e5b8f01bdbd (diff) | |
download | CMake-971692c0559ad908f7a1177fbe62d273945601db.zip CMake-971692c0559ad908f7a1177fbe62d273945601db.tar.gz CMake-971692c0559ad908f7a1177fbe62d273945601db.tar.bz2 |
Build enable_language command during bootstrap
Commit 060d6e88 (Add support for windres to cygwin, 2010-12-23) and
commit b2f308c8 (Add support for windows resources with mingw/msys,
2010-12-22) introduced enable_language(RC) for the first time in a
platform file processed by a bootstrap-built cmake.
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 db01688..554f452 100644 --- a/Source/cmBootstrapCommands.cxx +++ b/Source/cmBootstrapCommands.cxx @@ -32,6 +32,7 @@ #include "cmCreateTestSourceList.cxx" #include "cmDefinePropertyCommand.cxx" #include "cmElseCommand.cxx" +#include "cmEnableLanguageCommand.cxx" #include "cmEnableTestingCommand.cxx" #include "cmEndForEachCommand.cxx" #include "cmEndFunctionCommand.cxx" @@ -109,6 +110,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmCreateTestSourceList); commands.push_back(new cmDefinePropertyCommand); commands.push_back(new cmElseCommand); + commands.push_back(new cmEnableLanguageCommand); commands.push_back(new cmEnableTestingCommand); commands.push_back(new cmEndForEachCommand); commands.push_back(new cmEndFunctionCommand); |