diff options
author | Alex Neundorf <neundorf@kde.org> | 2018-01-23 22:03:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-01-24 13:30:02 (GMT) |
commit | 9198e6a27b02a39ae5b7a96839e54da6588c3a3f (patch) | |
tree | 9bdf91162477bcd4d1bbd9cf1c41a488709faa25 /Source/QtDialog | |
parent | 1345bdf1b6520a2f0c9891ad3c6fee00a6a5f18d (diff) | |
download | CMake-9198e6a27b02a39ae5b7a96839e54da6588c3a3f.zip CMake-9198e6a27b02a39ae5b7a96839e54da6588c3a3f.tar.gz CMake-9198e6a27b02a39ae5b7a96839e54da6588c3a3f.tar.bz2 |
Generators: remove KDevelop3 generator
The last KDevelop3 release was many years ago, in 2008 I think.
I haven't seen or read about anybody using KDevelop 3 since a
long time, so I think it can safely be removed from CMake.
KDevelop 4 (first released in 2010) has its own proper CMake
support now, independent from this generator.
Alex
Diffstat (limited to 'Source/QtDialog')
-rw-r--r-- | Source/QtDialog/QCMake.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/QtDialog/QCMake.cxx b/Source/QtDialog/QCMake.cxx index 7e94a27..a84429b 100644 --- a/Source/QtDialog/QCMake.cxx +++ b/Source/QtDialog/QCMake.cxx @@ -39,15 +39,6 @@ QCMake::QCMake(QObject* p) std::vector<cmake::GeneratorInfo>::const_iterator it; for (it = generators.begin(); it != generators.end(); ++it) { - // Skip the generator "KDevelop3", since there is also - // "KDevelop3 - Unix Makefiles", which is the full and official name. - // The short name is actually only still there since this was the name - // in CMake 2.4, to keep "command line argument compatibility", but - // this is not necessary in the GUI. - if (it->name == "KDevelop3") { - continue; - } - this->AvailableGenerators.push_back(*it); } } |