Skip to content
Snippets Groups Projects
Commit d374c6dd authored by Simon Spannagel's avatar Simon Spannagel
Browse files

Update Doxygen target

parent 932e371c
No related branches found
No related tags found
No related merge requests found
...@@ -2,17 +2,19 @@ ...@@ -2,17 +2,19 @@
# Doxygen target to generate API reference # # Doxygen target to generate API reference #
############################################# #############################################
SET(DOCS_DOXYGEN_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/reference")
FIND_PACKAGE(Doxygen) FIND_PACKAGE(Doxygen)
IF(DOXYGEN_FOUND) CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/reference/Doxyfile" "${DOCS_DOXYGEN_BINARY_DIR}/Doxyfile" @ONLY)
CONFIGURE_FILE(${PROJECT_SOURCE_DIR}/doc/reference/Doxyfile.in ${CMAKE_BINARY_DIR}/reference/Doxyfile @ONLY)
ADD_CUSTOM_TARGET(${CMAKE_PROJECT_NAME}-reference ADD_CUSTOM_TARGET(
${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/reference/Doxyfile apsq_docs_reference
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/reference COMMAND Doxygen::doxygen "${DOCS_DOXYGEN_BINARY_DIR}/Doxyfile"
COMMENT "Generating API documentation with Doxygen" DEPENDS Doxygen::doxygen
VERBATIM WORKING_DIRECTORY "${DOCS_DOXYGEN_BINARY_DIR}"
) COMMENT "Generating API reference with Doxygen"
ENDIF(DOXYGEN_FOUND) VERBATIM)
############################################### ###############################################
# LaTeX target to compile the PDF user manual # # LaTeX target to compile the PDF user manual #
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment