summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraCodeBlocksGenerator.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-07-18 14:19:33 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-07-18 14:19:33 (GMT)
commit27244a1fdef646ea791e28119cefc57c4c967564 (patch)
tree6ed62309ee34fb3e01646a301acf9939c4414b7b /Source/cmExtraCodeBlocksGenerator.cxx
parent0044ce71bce5e9329356d0cb6bc67ea30142b9b2 (diff)
downloadCMake-27244a1fdef646ea791e28119cefc57c4c967564.zip
CMake-27244a1fdef646ea791e28119cefc57c4c967564.tar.gz
CMake-27244a1fdef646ea791e28119cefc57c4c967564.tar.bz2
ENH: build codeblocks generator also on Windows
Alex
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r--Source/cmExtraCodeBlocksGenerator.cxx12
1 files changed, 8 insertions, 4 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx
index f2f0085..945d72a 100644
--- a/Source/cmExtraCodeBlocksGenerator.cxx
+++ b/Source/cmExtraCodeBlocksGenerator.cxx
@@ -37,15 +37,19 @@ void cmExtraCodeBlocksGenerator
"Project files for CodeBlocks will be created in the top directory "
"and in every subdirectory which features a CMakeLists.txt file "
"containing a PROJECT() call. "
- "Additionally a hierarchy of UNIX makefiles is generated into the "
- "build tree. Any "
- "standard UNIX-style make program can build the project through the "
- "default make target. A \"make install\" target is also provided.";
+ "Additionally a hierarchy of makefiles is generated into the "
+ "build tree. The appropriate make program can build the project through "
+ "the default make target. A \"make install\" target is also provided.";
}
cmExtraCodeBlocksGenerator::cmExtraCodeBlocksGenerator()
:cmExternalMakefileProjectGenerator()
{
+#if defined(_WIN32)
+ this->SupportedGlobalGenerators.push_back("NMake Makefiles");
+ this->SupportedGlobalGenerators.push_back("MSYS Makefiles");
+ this->SupportedGlobalGenerators.push_back("MinGW Makefiles");
+#endif
this->SupportedGlobalGenerators.push_back("Unix Makefiles");
}