Skip to content
Snippets Groups Projects
Verified Commit c9e8f10a authored by Paul Dechamps's avatar Paul Dechamps :speech_balloon:
Browse files

(build) Removed doxygen

Removed doxygen from blaster module in CMakeLists.txt of the root folder. It is still included in dartflo (if it is installed)
parent 457f870c
No related branches found
No related tags found
1 merge request!1BLASTER v1.0
Pipeline #19662 failed
......@@ -71,25 +71,6 @@ ELSE()
SET(CMAKE_SWIG_OUTDIR "${EXECUTABLE_OUTPUT_PATH}")
ENDIF()
# Doxygen (https://vicrucann.github.io/tutorials/quick-cmake-doxygen/)
FIND_PACKAGE(Doxygen) # check if Doxygen is installed
IF(DOXYGEN_FOUND)
# set input and output files
SET(DOXYGEN_IN ${PROJECT_SOURCE_DIR}/Doxyfile.in)
SET(DOXYGEN_OUT ${PROJECT_BINARY_DIR}/Doxyfile)
# request to configure the file
CONFIGURE_FILE(${DOXYGEN_IN} ${DOXYGEN_OUT} @ONLY)
# note the option ALL which allows to build the docs together with the application
# "make dox" rebuilds the doc
ADD_CUSTOM_TARGET( dox #ALL
COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYGEN_OUT}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Doxygen"
VERBATIM )
ELSE()
MESSAGE("Doxygen needs to be installed to generate the doxygen documentation")
ENDIF()
# -- DEFINE (for SWIG to detect definitions)
INCLUDE_DIRECTORIES(${CMAKE_BINARY_DIR}) # to find "amfe_def.h"
......
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