summaryrefslogtreecommitdiffstats
path: root/addon/doxyparse
diff options
context:
space:
mode:
authorRolf Eike Beer <eb@emlix.com>2017-10-20 10:31:29 (GMT)
committerRolf Eike Beer <kde@opensource.sf-tec.de>2017-10-20 18:25:40 (GMT)
commit7c1c75a2c5583415d178e0e46a1a356bef9b0c84 (patch)
tree305f101e105276db4a507171173fe478d67154fb /addon/doxyparse
parentac5ca4ef86ad50232be75a65fab99302307b7795 (diff)
downloadDoxygen-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/doxyparse')
-rw-r--r--addon/doxyparse/CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/addon/doxyparse/CMakeLists.txt b/addon/doxyparse/CMakeLists.txt
index e4f9021..8e7536f 100644
--- a/addon/doxyparse/CMakeLists.txt
+++ b/addon/doxyparse/CMakeLists.txt
@@ -1,5 +1,3 @@
-if (build_parse)
-
# configvalues.h
add_custom_command(
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/src/configgen.py -maph ${CMAKE_SOURCE_DIR}/src/config.xml > ${GENERATED_SRC}/configvalues.h
@@ -35,5 +33,3 @@ ${CLANG_LIBS}
)
install(TARGETS doxyparse DESTINATION bin)
-
-endif()