Skip to content

Doxygen #38

@ghost

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.

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions