diff options
author | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-15 10:14:13 (GMT) |
---|---|---|
committer | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-15 10:14:13 (GMT) |
commit | 2fb07fc44c49da70a609fbc0df013c0301e9f36a (patch) | |
tree | b0df34212593867478c577962699b33afab20cd7 /Source/cmGlobalKdevelopGenerator.cxx | |
parent | 518c06585b07c1b7a189374c9196fc1a7fc3502d (diff) | |
download | CMake-2fb07fc44c49da70a609fbc0df013c0301e9f36a.zip CMake-2fb07fc44c49da70a609fbc0df013c0301e9f36a.tar.gz CMake-2fb07fc44c49da70a609fbc0df013c0301e9f36a.tar.bz2 |
Ninja: Eclipse and KDevelop fixes for ninja
Thx to Claus Klein
Diffstat (limited to 'Source/cmGlobalKdevelopGenerator.cxx')
-rw-r--r-- | Source/cmGlobalKdevelopGenerator.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalKdevelopGenerator.cxx b/Source/cmGlobalKdevelopGenerator.cxx index 56b9e9c..f699448 100644 --- a/Source/cmGlobalKdevelopGenerator.cxx +++ b/Source/cmGlobalKdevelopGenerator.cxx @@ -44,6 +44,9 @@ cmGlobalKdevelopGenerator::cmGlobalKdevelopGenerator() :cmExternalMakefileProjectGenerator() { this->SupportedGlobalGenerators.push_back("Unix Makefiles"); +#ifdef CMAKE_USE_NINJA + this->SupportedGlobalGenerators.push_back("Ninja"); +#endif } void cmGlobalKdevelopGenerator::Generate() |