zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 4bd3ed8182dd85bb3d2bba02f8a783b9fa87ab40
parent 1dd5db26176813b8a7c35781cf4f85d9d6cf6f9c
Author: Johannes Lorenz <[email protected]>
Date:   Sat, 17 Dec 2016 22:03:39 +0100

Use target doc for documentation.

Diffstat:
Mdoc/CMakeLists.txt | 19+++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt @@ -1,12 +1,15 @@ find_package(Doxygen) -SET(Documentation FALSE CACHE BOOL "Enable building documentation") -if(DOXYGEN_FOUND AND Documentation) +if(DOXYGEN_FOUND) + # configuration variables 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) + set(DOXYGEN_OUTPUT_DIR html) + + configure_file(Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile) + add_custom_command(OUTPUT ${DOXYGEN_OUTPUT_DIR} + DEPENDS rtosc-doc zynaddsubfx ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile + COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + COMMENT "Generating API documentation with Doxygen" VERBATIM) + add_custom_target(doc DEPENDS html) endif()