mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
3dd3d48fbb
CMake will set version variables itself if you give the version in the project(), which is cleaner. Also removes some (nearly) duplicate definitions and settings added in basic_definitions.cmake for unknown reasons. Removes some redundant settings (name, description, version) from the cpack settings which already default to the values from the project() call.
40 lines
1.3 KiB
CMake
40 lines
1.3 KiB
CMake
find_program(DOXYGEN doxygen)
|
|
if (NOT DOXYGEN)
|
|
message(STATUS "Documentation generation disabled (doxygen not found)")
|
|
return()
|
|
endif()
|
|
find_program(SPHINX_BUILD sphinx-build)
|
|
if (NOT DOXYGEN)
|
|
message(STATUS "Documentation generation disabled (sphinx-build not found)")
|
|
return()
|
|
endif()
|
|
|
|
set(lokinet_doc_sources "${DOCS_SRC}")
|
|
string(REPLACE ";" " " lokinet_doc_sources_spaced "${lokinet_doc_sources}")
|
|
|
|
add_custom_command(
|
|
OUTPUT doxyxml/index.xml
|
|
COMMAND ${DOXYGEN} Doxyfile
|
|
DEPENDS
|
|
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
|
|
${lokinet_doc_sources}
|
|
)
|
|
|
|
add_custom_command(
|
|
OUTPUT html/index.html
|
|
COMMAND ${SPHINX_BUILD}
|
|
-Dbreathe_projects.lokinet=${CMAKE_CURRENT_BINARY_DIR}/doxyxml
|
|
-Dversion=${lokinet_VERSION} -Drelease=${lokinet_VERSION}
|
|
-Aversion=${lokinet_VERSION} -Aversions=${lokinet_VERSION_MAJOR},${lokinet_VERSION_MINOR},${lokinet_VERSION_PATCH}
|
|
-b html
|
|
${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/html
|
|
DEPENDS
|
|
${CMAKE_CURRENT_BINARY_DIR}/index.rst
|
|
${CMAKE_CURRENT_BINARY_DIR}/conf.py
|
|
${CMAKE_CURRENT_BINARY_DIR}/doxyxml/index.xml
|
|
)
|
|
add_custom_target(doc DEPENDS html/index.html)
|
|
configure_file(conf.py.in conf.py @ONLY)
|
|
configure_file(Doxyfile.in Doxyfile @ONLY)
|
|
configure_file(index.rst index.rst COPYONLY)
|