1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2024-06-09 04:29:31 +00:00
6502-cpp/cmake/Doxygen.cmake

12 lines
333 B
CMake
Raw Normal View History

function(enable_doxygen)
option(ENABLE_DOXYGEN "Enable doxygen doc builds of source" OFF)
if(ENABLE_DOXYGEN)
set(DOXYGEN_CALLER_GRAPH YES)
set(DOXYGEN_CALL_GRAPH YES)
set(DOXYGEN_EXTRACT_ALL YES)
find_package(Doxygen REQUIRED dot)
doxygen_add_docs(doxygen-docs ${PROJECT_SOURCE_DIR})
endif()
endfunction()