diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-08-01 18:58:55 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-08-01 18:58:55 (GMT) |
commit | 2246e0336db396058ebcec67527bf790a34a8e72 (patch) | |
tree | 2520c5e2ccb6ca13d840e8a22101aaad150d26e7 /Source/cmExtraCodeBlocksGenerator.cxx | |
parent | ee91e2549921075b02f0a88fb48323b1c015228c (diff) | |
download | CMake-2246e0336db396058ebcec67527bf790a34a8e72.zip CMake-2246e0336db396058ebcec67527bf790a34a8e72.tar.gz CMake-2246e0336db396058ebcec67527bf790a34a8e72.tar.bz2 |
BUG: also offer the extra generators in CMakeSetup
Alex
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 92a306e..4a2850d 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -47,8 +47,9 @@ cmExtraCodeBlocksGenerator::cmExtraCodeBlocksGenerator() { #if defined(_WIN32) this->SupportedGlobalGenerators.push_back("NMake Makefiles"); - this->SupportedGlobalGenerators.push_back("MSYS Makefiles"); this->SupportedGlobalGenerators.push_back("MinGW Makefiles"); +// disable MSYS until somebody actually tests it +// this->SupportedGlobalGenerators.push_back("MSYS Makefiles"); #endif this->SupportedGlobalGenerators.push_back("Unix Makefiles"); } |