chore: update documentation build script

This commit is contained in:
2024-07-08 08:54:49 +08:00
parent d27a66e770
commit 11b2185bb4
2 changed files with 14 additions and 2 deletions

View File

@ -4,3 +4,15 @@ configure_file(
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
@ONLY
)
# Add custom target
add_custom_target (YYCCDocumentation
doxygen ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating documentation" VERBATIM
)
# Install built documentation
install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html
DESTINATION doc
)