diff --git docs/CMakeLists.txt docs/CMakeLists.txt
index f17400f..2dd6b8b 100644
|
|
message(STATUS "Looking for Sphinx Documentation Builder...") |
17 | 17 | find_program(SPHINX_EXECUTABLE |
18 | 18 | NAMES |
19 | 19 | sphinx-build |
20 | | sphinx-build2 |
21 | | sphinx-build3 |
| 20 | sphinx-build-3.4 |
| 21 | sphinx-build-3.3 |
| 22 | sphinx-build-2.7 |
22 | 23 | DOC "Sphinx Documentation Builder (http://sphinx-doc.org/)" |
23 | 24 | ) |
24 | 25 | if(SPHINX_EXECUTABLE) |
… |
… |
if(BUILD_QTHELP_DOCS) |
67 | 68 | set(qthelp_extra_commands |
68 | 69 | COMMAND |
69 | 70 | qcollectiongenerator |
70 | | ${CMAKE_CURRENT_BINARY_DIR}/qthelp/extra-cmake-modules.qhcp |
| 71 | ${CMAKE_CURRENT_BINARY_DIR}/qthelp/ExtraCMakeModules.qhcp |
71 | 72 | ) |
72 | 73 | endif() |
73 | 74 | |
… |
… |
if(BUILD_HTML_DOCS) |
122 | 123 | endif() |
123 | 124 | if(BUILD_QTHELP_DOCS) |
124 | 125 | install( |
125 | | FILES ${CMAKE_CURRENT_BINARY_DIR}/qthelp/extra-cmake-modules.qch |
| 126 | FILES ${CMAKE_CURRENT_BINARY_DIR}/qthelp/ExtraCMakeModules.qch |
126 | 127 | DESTINATION ${DOC_INSTALL_DIR} |
127 | 128 | ) |
128 | 129 | endif() |