aboutsummaryrefslogtreecommitdiffstats
path: root/doc/CMakeLists.txt
blob: 57c8fa75719a20bd309e7921388dcc0fe1967c93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

find_program(SPHINX sphinx-build DOC "Path to sphinx-build binary.")

if (SPHINX)
    message("-- sphinx-build - found")
    configure_file(conf.py.in conf.py @ONLY)
    add_custom_target(doc ${SPHINX} -b html -c . ${CMAKE_CURRENT_SOURCE_DIR} html )
else()
    message("-- sphinx-build - not found! doc target disabled")
endif()

if (NOT win32)
    file(GLOB manpages "${CMAKE_CURRENT_SOURCE_DIR}/*.1")
    install(FILES ${manpages} DESTINATION share/man/man1)
endif()