[ARM] Split large widening MVE loads
[llvm-core.git] / cmake / modules / FindSphinx.cmake
blob9d252e8b70aef4abf8a8da21eb0248bea53137a6
1 # CMake find_package() Module for Sphinx documentation generator
2 # http://sphinx-doc.org/
4 # Example usage:
6 # find_package(Sphinx)
8 # If successful the following variables will be defined
9 # SPHINX_FOUND
10 # SPHINX_EXECUTABLE
12 find_program(SPHINX_EXECUTABLE
13              NAMES sphinx-build sphinx-build2
14              DOC "Path to sphinx-build executable")
16 # Handle REQUIRED and QUIET arguments
17 # this will also set SPHINX_FOUND to true if SPHINX_EXECUTABLE exists
18 include(FindPackageHandleStandardArgs)
19 find_package_handle_standard_args(Sphinx
20                                   "Failed to locate sphinx-build executable"
21                                   SPHINX_EXECUTABLE)
23 # Provide options for controlling different types of output
24 option(SPHINX_OUTPUT_HTML "Output standalone HTML files" ON)
25 option(SPHINX_OUTPUT_MAN "Output man pages" ON)
27 option(SPHINX_WARNINGS_AS_ERRORS "When building documentation treat warnings as errors" ON)