mirror of
https://github.com/triqs/dft_tools
synced 2024-11-07 22:53:50 +01:00
24 lines
880 B
CMake
24 lines
880 B
CMake
# generate the conf.py
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/conf.py.in ${CMAKE_CURRENT_BINARY_DIR}/conf.py @ONLY)
|
|
|
|
# ---------------------------------
|
|
# Top Sphinx target
|
|
# ---------------------------------
|
|
# Sources
|
|
file(GLOB_RECURSE sources *.rst)
|
|
|
|
# create documentation target
|
|
set(sphinx_top ${CMAKE_CURRENT_BINARY_DIR}/html/index.html)
|
|
add_custom_command(OUTPUT ${sphinx_top} DEPENDS ${sources}
|
|
COMMAND ${TRIQS_SPHINXBUILD_EXECUTABLE} -c . -j8 -b html ${CMAKE_CURRENT_SOURCE_DIR} html)
|
|
add_custom_target(doc_sphinx ALL DEPENDS ${sphinx_top} ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
# ---------------------------------
|
|
# Install
|
|
# ---------------------------------
|
|
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/ COMPONENT documentation DESTINATION share/doc/triqs_dft_tools
|
|
FILES_MATCHING
|
|
REGEX "\\.(html|pdf|png|gif|jpg|js|xsl|css|py|txt|inv|bib)$"
|
|
PATTERN "_*"
|
|
)
|