mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 10:40:00 +08:00
65848d1e5f
Some developers would be happier with the gtest version provided from their package manager. Use it if it is installed the package provide cmake support. Fixed: https://github.com/ArthurSonzogni/FTXUI/issues/551
28 lines
869 B
CMake
28 lines
869 B
CMake
if(NOT FTXUI_BUILD_DOCS)
|
|
return()
|
|
endif()
|
|
|
|
find_package(Doxygen)
|
|
if (NOT DOXYGEN_FOUND)
|
|
message("Doxygen need to be installed to generate the doxygen documentation")
|
|
return()
|
|
endif()
|
|
|
|
# Generate example list for documentation
|
|
set(EXAMPLE_LIST "${CMAKE_CURRENT_BINARY_DIR}/example_list.md")
|
|
file(WRITE ${EXAMPLE_LIST} "# Examples")
|
|
get_property(EXAMPLES GLOBAL PROPERTY FTXUI::EXAMPLES)
|
|
foreach(EXAMPLE IN LISTS EXAMPLES)
|
|
file(APPEND ${EXAMPLE_LIST} "\n@example examples/${EXAMPLE}.cpp")
|
|
endforeach(EXAMPLE IN LISTS EXAMPLES)
|
|
|
|
configure_file(Doxyfile.in Doxyfile @ONLY)
|
|
|
|
# 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
|
|
)
|