2022-07-19 10:38:26 +00:00
|
|
|
find_program(DOXYGEN doxygen
|
|
|
|
PATHS "$ENV{ProgramFiles}/doxygen/bin"
|
|
|
|
"$ENV{ProgramFiles\(x86\)}/doxygen/bin")
|
2015-04-10 15:39:09 +00:00
|
|
|
if (NOT DOXYGEN)
|
|
|
|
message(STATUS "Target 'doc' disabled (requires doxygen)")
|
2015-03-02 00:35:29 +00:00
|
|
|
return ()
|
|
|
|
endif ()
|
|
|
|
|
2022-08-17 21:18:39 +00:00
|
|
|
# Find the Python interpreter and set the PYTHON_EXECUTABLE variable.
|
|
|
|
if (CMAKE_VERSION VERSION_LESS 3.12)
|
|
|
|
# This logic is deprecated in CMake after 3.12.
|
|
|
|
find_package(PythonInterp QUIET REQUIRED)
|
|
|
|
else ()
|
|
|
|
find_package(Python QUIET REQUIRED)
|
|
|
|
set(PYTHON_EXECUTABLE ${Python_EXECUTABLE})
|
|
|
|
endif ()
|
2020-07-07 14:35:01 +00:00
|
|
|
|
2015-11-23 16:10:02 +00:00
|
|
|
add_custom_target(doc
|
2020-07-07 14:35:01 +00:00
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/build.py
|
2020-07-26 16:44:37 +00:00
|
|
|
${FMT_VERSION}
|
2018-12-28 23:05:42 +00:00
|
|
|
SOURCES api.rst syntax.rst usage.rst build.py conf.py _templates/layout.html)
|
2015-01-30 20:53:52 +00:00
|
|
|
|
2020-07-07 14:35:01 +00:00
|
|
|
include(GNUInstallDirs)
|
2016-05-24 14:03:08 +00:00
|
|
|
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/
|
2020-07-07 14:35:01 +00:00
|
|
|
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/doc/fmt OPTIONAL
|
2020-05-29 21:19:16 +00:00
|
|
|
PATTERN ".doctrees" EXCLUDE)
|