Lines Matching +full:created +full:- +full:for

1 #-------------------------------------------------------------------------------
4 # SPDX-License-Identifier: BSD-3-Clause
6 #-------------------------------------------------------------------------------
9 #-----------
11 #See http://www.sphinx-doc.org/en/master/
14 #(sphinx-build) and it's dependences (Python).
16 #package (i.e. python-sphinx for Ubuntu). Independent of the distribution
17 #method this module expects sphix-build to be either available on the PATH,
21 # SPHINX_PATH = variable specifying where sphinx-build can be found.
28 # SPHINX_VERSION = The version reported by "sphinx-build --version"
29 # SPHINX_FOUND = True is sphinx-build was found and executed fine
38 message(STATUS "Sphinx documentation targets will not be created.")
52 NAMES sphinx-build
53 DOC "Sphinx Documentation Builder (sphinx-doc.org)"
62 if (SPHINX_EXECUTABLE-NOTFOUND)
63 message(STATUS "Failed to find sphinx-build at ${SPHINX_PATH}.")
64 message(STATUS "Sphinx documentation targets will not be created.")
70 NAMES sphinx-build
71 DOC "Sphinx Documentation Builder (sphinx-doc.org)"
74 if (SPHINX_EXECUTABLE-NOTFOUND)
75 message(STATUS "Failed to find sphinx-build at OS specific default locations.")
76 message(STATUS "Sphinx documentation targets will not be created.")
82 execute_process(COMMAND "${SPHINX_EXECUTABLE}" "--version" OUTPUT_VARIABLE _SPHINX_VERSION OUTPUT_S…
85 if(_SPHINX_VERSION MATCHES ".*sphinx-build[^0-9.]*([0-9.]+).*")
86 string(REGEX REPLACE ".*sphinx-build ([0-9.]+).*" "\\1" SPHINX_VERSION "${_SPHINX_VERSION}")