commit a43cbfe309c0b5a0c84f6d56fe666b92763263e3 parent ecc5127f4fe44b43d836e30d6378fc440b18aa45 Author: Johannes Lorenz <[email protected]> Date: Mon, 28 Nov 2016 16:44:20 +0100 Forgot doc/CMakeLists.txt. Diffstat:
A | doc/CMakeLists.txt | | | 12 | ++++++++++++ |
1 file changed, 12 insertions(+), 0 deletions(-)
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt @@ -0,0 +1,12 @@ +find_package(Doxygen) +SET(Documentation FALSE CACHE BOOL "Enable building documentation") + +if(DOXYGEN_FOUND AND Documentation) + set(CMAKE_DOXYGEN_INPUT_LIST ${CMAKE_SOURCE_DIR}/src/) + SET(DOXYGEN_OUTPUT_DIR html) + CONFIGURE_FILE(Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile) + SET(HTML_TARGET "html" ) + ADD_CUSTOM_TARGET(${HTML_TARGET} ALL + ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile + DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile) +endif()