-
Notifications
You must be signed in to change notification settings - Fork 130
Closed
Labels
DocumentationEverything which impacts the quality of the documentation and guidelines.Everything which impacts the quality of the documentation and guidelines.
Milestone
Description
I think the doxygen documentation can be generated automatically via cmake?
# add a target to generate API documentation with Doxygen
find_package(Doxygen)
if(DOXYGEN_FOUND)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
add_custom_target(doc
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Doxygen" VERBATIM
)
endif(DOXYGEN_FOUND)
Metadata
Metadata
Assignees
Labels
DocumentationEverything which impacts the quality of the documentation and guidelines.Everything which impacts the quality of the documentation and guidelines.