Commit 10e03e69 authored by Kefu Chai's avatar Kefu Chai Committed by Victor Zverovich

use found python executable for launching sphinx-build

there is chance that the distro install python as python3, in that case
the shebang of
```
```
in build.py won't work.
Signed-off-by: default avatarKefu Chai <tchaikov@gmail.com>
parent 07200f44
......@@ -4,11 +4,13 @@ if (NOT DOXYGEN)
return ()
endif ()
find_package(PythonInterp
QUIET REQUIRED)
find_program(SPHINX_EXECUTABLE
NAMES sphinx-build sphinx-build-3)
add_custom_target(doc
COMMAND ${CMAKE_COMMAND} -E env SPHINX_EXECUTABLE=${SPHINX_EXECUTABLE}
${CMAKE_CURRENT_SOURCE_DIR}/build.py ${FMT_VERSION})
${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/build.py ${FMT_VERSION}
SOURCES api.rst syntax.rst build.py conf.py _templates/layout.html)
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment