How to build custom_target "doc" along with the main build? #815
-
in # note the option ALL which allows to build the docs together with the application
add_custom_target(doc
COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Doxygen"
VERBATIM
) I am not sure what the option "ALL" here means? Can someone please help me understand how I can build the docs along with the application? |
Beta Was this translation helpful? Give feedback.
Answered by
notshriram
Feb 15, 2024
Replies: 1 comment
-
OK so this is what they mean by ALL: It seems to have been removed after pasting that snippet of code from somwhere |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
notshriram
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK so this is what they mean by ALL:
https://stackoverflow.com/a/43885935
It seems to have been removed after pasting that snippet of code from somwhere