Files
UnrealEngine/Engine/Source/ThirdParty/Imath/Imath-3.1.12/cmake/FindSphinx.cmake
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

16 lines
559 B
CMake

# SPDX-License-Identifier: BSD-3-Clause
# Copyright Contributors to the OpenEXR Project.
#Look for an executable called sphinx-build
find_program(SPHINX_EXECUTABLE
NAMES sphinx-build
DOC "Path to sphinx-build executable")
include(FindPackageHandleStandardArgs)
#Handle standard arguments to find_package like REQUIRED and QUIET
find_package_handle_standard_args(Sphinx
"Failed to find sphinx-build executable"
SPHINX_EXECUTABLE)