63 lines
2.2 KiB
CMake
63 lines
2.2 KiB
CMake
# - Setup documentation
|
|
#
|
|
# Assumes that a Doxyfile template is located in the project root
|
|
# directory, and that all documentation is going to be generated
|
|
# into its own Documentation/ directory. It will also generate an
|
|
# installation target for the documentation (not built by default)
|
|
#
|
|
# Requires the following suffices to be set:
|
|
# _NAME Name of the project
|
|
#
|
|
# Output the following suffices:
|
|
# _STYLESHEET_COPIED Location of stylesheet to be removed in distclean
|
|
|
|
macro (opm_doc opm docu_dir)
|
|
configure_file (
|
|
${PROJECT_SOURCE_DIR}/Doxyfile.in
|
|
${PROJECT_BINARY_DIR}/Doxyfile
|
|
@ONLY
|
|
)
|
|
find_package (Doxygen)
|
|
if (DOXYGEN_FOUND)
|
|
add_custom_target (doc
|
|
COMMAND ${DOXYGEN_EXECUTABLE} ${PROJECT_BINARY_DIR}/Doxyfile
|
|
SOURCES ${PROJECT_BINARY_DIR}/Doxyfile
|
|
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/${docu_dir}
|
|
COMMENT "Generating API documentation with Doxygen"
|
|
VERBATIM
|
|
)
|
|
set (_formats html)
|
|
foreach (format IN LISTS _formats)
|
|
string (TOUPPER ${format} FORMAT)
|
|
install (
|
|
DIRECTORY ${PROJECT_BINARY_DIR}/${docu_dir}/${format}
|
|
DESTINATION share/doc/${${opm}_NAME}
|
|
COMPONENT ${format}
|
|
OPTIONAL
|
|
)
|
|
# target to install just HTML documentation
|
|
add_custom_target (install-${format}
|
|
COMMAND ${CMAKE_COMMAND} -DCOMPONENT=${format} -P cmake_install.cmake
|
|
COMMENT Installing ${FORMAT} documentation
|
|
VERBATIM
|
|
)
|
|
# since the documentation is optional, it is not automatically built
|
|
add_dependencies (install-${format} doc)
|
|
endforeach (format)
|
|
endif (DOXYGEN_FOUND)
|
|
|
|
# stylesheets must be specified with relative path in Doxyfile, or the
|
|
# full path (to the source directory!) will be put in the output HTML.
|
|
# thus, we'll need to copy the stylesheet to this path relative to where
|
|
# Doxygen will be run (in the output tree)
|
|
if (NOT PROJECT_SOURCE_DIR STREQUAL PROJECT_BINARY_DIR)
|
|
file (COPY ${PROJECT_SOURCE_DIR}/${docu_dir}/style.css
|
|
DESTINATION ${PROJECT_BINARY_DIR}/${docu_dir}
|
|
)
|
|
set (${opm}_STYLESHEET_COPIED "${docu_dir}/style.css")
|
|
else (NOT PROJECT_SOURCE_DIR STREQUAL PROJECT_BINARY_DIR)
|
|
set (${opm}_STYLESHEET_COPIED "")
|
|
endif (NOT PROJECT_SOURCE_DIR STREQUAL PROJECT_BINARY_DIR)
|
|
|
|
endmacro (opm_doc opm)
|