diff options
author | Brad King <brad.king@kitware.com> | 2014-01-13 15:28:37 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-01-13 15:28:37 (GMT) |
commit | 071005add14f426c9326c2fba8771da1e563ac92 (patch) | |
tree | 1bd3383c2faf8c6f0f0ff916a4edf983c6b922d8 /Source/cmake.cxx | |
parent | cb8c9dd01b282f56e3759bcaf86a6533bfe051fb (diff) | |
parent | 0c4e8c70a0449bde505d696d120ac0ef207f92a5 (diff) | |
download | CMake-071005add14f426c9326c2fba8771da1e563ac92.zip CMake-071005add14f426c9326c2fba8771da1e563ac92.tar.gz CMake-071005add14f426c9326c2fba8771da1e563ac92.tar.bz2 |
Merge topic 'support-codelite-ide-generator'
0c4e8c70 Add support for codelite IDE project fles
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 cf4b9c3..33fb0fc 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -69,6 +69,7 @@ #endif #include "cmGlobalUnixMakefileGenerator3.h" #include "cmGlobalNinjaGenerator.h" +#include "cmExtraCodeLiteGenerator.h" #if !defined(CMAKE_BOOT_MINGW) # include "cmExtraCodeBlocksGenerator.h" @@ -992,6 +993,8 @@ void cmake::AddDefaultExtraGenerators() this->AddExtraGenerator(cmExtraCodeBlocksGenerator::GetActualName(), &cmExtraCodeBlocksGenerator::New); + this->AddExtraGenerator(cmExtraCodeLiteGenerator::GetActualName(), + &cmExtraCodeLiteGenerator::New); this->AddExtraGenerator(cmExtraSublimeTextGenerator::GetActualName(), &cmExtraSublimeTextGenerator::New); this->AddExtraGenerator(cmExtraKateGenerator::GetActualName(), |