diff options
author | Brad King <brad.king@kitware.com> | 2018-01-25 13:34:38 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-01-25 13:34:53 (GMT) |
commit | aaf3c5b32c9e75fb738fcc00228551f678db26d5 (patch) | |
tree | b6fecd09f56323b4331f7a585dd75e127afb4578 /Source/QtDialog | |
parent | 721647c8e58eb1f584414d008be8e1451895bcff (diff) | |
parent | 551bd0b3e8ccd8c5cd8fff15a940797b8677a310 (diff) | |
download | CMake-aaf3c5b32c9e75fb738fcc00228551f678db26d5.zip CMake-aaf3c5b32c9e75fb738fcc00228551f678db26d5.tar.gz CMake-aaf3c5b32c9e75fb738fcc00228551f678db26d5.tar.bz2 |
Merge topic 'RemoveKDevelop3'
551bd0b3 Generators: adjust error message for the removed KDevelop3 generator
9198e6a2 Generators: remove KDevelop3 generator
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1688
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); } } |