mirror of
https://github.com/Icinga/icinga2.git
synced 2025-08-24 02:59:17 +02:00
10 lines
261 B
CMake
10 lines
261 B
CMake
find_program(SPHINX_EXECUTABLE
|
|
NAMES sphinx-build
|
|
DOC "Path to sphinx-build executable")
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(Sphinx
|
|
"Failed to find sphinx-build executable"
|
|
SPHINX_EXECUTABLE)
|