diff options
author | Rolf Eike Beer <eb@emlix.com> | 2017-10-20 10:31:29 (GMT) |
---|---|---|
committer | Rolf Eike Beer <kde@opensource.sf-tec.de> | 2017-10-20 18:25:40 (GMT) |
commit | 7c1c75a2c5583415d178e0e46a1a356bef9b0c84 (patch) | |
tree | 305f101e105276db4a507171173fe478d67154fb /addon/doxywizard | |
parent | ac5ca4ef86ad50232be75a65fab99302307b7795 (diff) | |
download | Doxygen-7c1c75a2c5583415d178e0e46a1a356bef9b0c84.zip Doxygen-7c1c75a2c5583415d178e0e46a1a356bef9b0c84.tar.gz Doxygen-7c1c75a2c5583415d178e0e46a1a356bef9b0c84.tar.bz2 |
CMake: avoid if() around the whole contents of plugin CMakeLists.txt
Just don't call add_subdirectory() if the build flag is not set.
Diffstat (limited to 'addon/doxywizard')
-rw-r--r-- | addon/doxywizard/CMakeLists.txt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/addon/doxywizard/CMakeLists.txt b/addon/doxywizard/CMakeLists.txt index 1838f75..0907d23 100644 --- a/addon/doxywizard/CMakeLists.txt +++ b/addon/doxywizard/CMakeLists.txt @@ -1,5 +1,3 @@ -if (build_wizard) - # search for Qt5 if (NOT force_qt4) find_package(Qt5Core QUIET CONFIG) @@ -112,5 +110,3 @@ ${QT_LIBRARIES} ${QT_QTMAIN_LIBRARY} ) install(TARGETS doxywizard DESTINATION bin) - -endif() |