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

16 lines
563 B
CMake

# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 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)