2022-07-19 13:38:26 +03:00
|
|
|
find_program(DOXYGEN doxygen
|
|
|
|
PATHS "$ENV{ProgramFiles}/doxygen/bin"
|
|
|
|
"$ENV{ProgramFiles\(x86\)}/doxygen/bin")
|
2015-04-10 18:39:09 +03:00
|
|
|
if (NOT DOXYGEN)
|
|
|
|
message(STATUS "Target 'doc' disabled (requires doxygen)")
|
2015-03-02 03:35:29 +03:00
|
|
|
return ()
|
|
|
|
endif ()
|
|
|
|
|
2022-08-18 00:18:39 +03: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 17:35:01 +03:00
|
|
|
|
2015-11-23 19:10:02 +03:00
|
|
|
add_custom_target(doc
|
2020-07-07 17:35:01 +03:00
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/build.py
|
2020-07-26 19:44:37 +03:00
|
|
|
${FMT_VERSION}
|
2018-12-29 02:05:42 +03:00
|
|
|
SOURCES api.rst syntax.rst usage.rst build.py conf.py _templates/layout.html)
|
2015-01-30 23:53:52 +03:00
|
|
|
|
2020-07-07 17:35:01 +03:00
|
|
|
include(GNUInstallDirs)
|
2016-05-24 17:03:08 +03:00
|
|
|
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/
|
2020-07-07 17:35:01 +03:00
|
|
|
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/doc/fmt OPTIONAL
|
2020-05-30 00:19:16 +03:00
|
|
|
PATTERN ".doctrees" EXCLUDE)
|