diff options
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 7e64476..c928603 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -72,6 +72,7 @@ #ifdef CMAKE_USE_KDEVELOP # include "cmGlobalKdevelopGenerator.h" +# include "cmExtraCodeBlocksGenerator.h" #endif #include <stdlib.h> // required for atoi @@ -1447,6 +1448,8 @@ void cmake::AddDefaultExtraGenerators() #endif // e.g. eclipse ? #ifdef CMAKE_USE_KDEVELOP + this->AddExtraGenerator(cmExtraCodeBlocksGenerator::GetActualName(), + &cmExtraCodeBlocksGenerator::New); this->AddExtraGenerator(cmGlobalKdevelopGenerator::GetActualName(), &cmGlobalKdevelopGenerator::New); // for kdevelop also add the generator with just the name of the |