blob: d1488eb4d2c58b918031349b6cd81c66f522a257 [file] [log] [blame]
Pablo Speciale55b6c962013-03-20 17:44:04 -07001# Ceres Solver - A fast non-linear least squares minimizer
Sergiu Deitscha57e35b2023-09-09 20:55:57 +02002# Copyright 2023 Google Inc. All rights reserved.
Keir Mierle7492b0d2015-03-17 22:30:16 -07003# http://ceres-solver.org/
Pablo Speciale55b6c962013-03-20 17:44:04 -07004#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are met:
7#
8# * Redistributions of source code must retain the above copyright notice,
9# this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above copyright notice,
11# this list of conditions and the following disclaimer in the documentation
12# and/or other materials provided with the distribution.
13# * Neither the name of Google Inc. nor the names of its contributors may be
14# used to endorse or promote products derived from this software without
15# specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27# POSSIBILITY OF SUCH DAMAGE.
28#
29# Author: pablo.speciale@gmail.com (Pablo Speciale)
30#
31
Sergiu Deitscha1c02e82023-09-10 15:25:31 +020032#[=======================================================================[.rst:
33FindSphinx
34==========
Pablo Specialec51b11c2013-03-12 00:56:56 -070035
Sergiu Deitscha1c02e82023-09-10 15:25:31 +020036Module for locating Sphinx and its components.
Pablo Specialec51b11c2013-03-12 00:56:56 -070037
Sergiu Deitscha1c02e82023-09-10 15:25:31 +020038This modules defines the following variables:
Pablo Specialec51b11c2013-03-12 00:56:56 -070039
Sergiu Deitscha1c02e82023-09-10 15:25:31 +020040``Sphinx_FOUND``
41 ``TRUE`` iff Sphinx and all of its components have been found.
Pablo Specialec51b11c2013-03-12 00:56:56 -070042
Sergiu Deitscha1c02e82023-09-10 15:25:31 +020043``Sphinx_BUILD_EXECUTABLE``
44 Path to the ``sphinx-build`` tool.
45]=======================================================================]
Sumit Dey7de561e2021-06-19 03:09:09 +020046
Sergiu Deitscha1c02e82023-09-10 15:25:31 +020047include (FindPackageHandleStandardArgs)
Sumit Dey7de561e2021-06-19 03:09:09 +020048
Sergiu Deitscha1c02e82023-09-10 15:25:31 +020049find_program (Sphinx_BUILD_EXECUTABLE
50 NAMES sphinx-build
51 PATHS /opt/local/bin
52 DOC "Sphinx documentation generator"
53)
Pablo Specialec51b11c2013-03-12 00:56:56 -070054
Sergiu Deitscha1c02e82023-09-10 15:25:31 +020055mark_as_advanced (Sphinx_BUILD_EXECUTABLE)
Pablo Specialec51b11c2013-03-12 00:56:56 -070056
Sergiu Deitscha1c02e82023-09-10 15:25:31 +020057if (Sphinx_BUILD_EXECUTABLE)
58 execute_process (
59 COMMAND ${Sphinx_BUILD_EXECUTABLE} --version
60 ERROR_STRIP_TRAILING_WHITESPACE
61 ERROR_VARIABLE _Sphinx_BUILD_ERROR
62 OUTPUT_STRIP_TRAILING_WHITESPACE
63 OUTPUT_VARIABLE _Sphinx_VERSION_STRING
64 RESULT_VARIABLE _Sphinx_BUILD_RESULT
65 )
Pablo Specialec51b11c2013-03-12 00:56:56 -070066
Sergiu Deitscha1c02e82023-09-10 15:25:31 +020067 if (_Sphinx_BUILD_RESULT EQUAL 0)
68 string (REGEX REPLACE "^sphinx-build[ \t]+([^ \t]+)$" "\\1" Sphinx_VERSION
69 "${_Sphinx_VERSION_STRING}")
70
71 if (Sphinx_VERSION MATCHES "[0-9]+\\.[0-9]+\\.[0-9]+")
72 set (Sphinx_VERSION_COMPONENTS 3)
73 set (Sphinx_VERSION_MAJOR ${CMAKE_MATCH_1})
74 set (Sphinx_VERSION_MINOR ${CMAKE_MATCH_2})
75 set (Sphinx_VERSION_PATCH ${CMAKE_MATCH_3})
76 endif (Sphinx_VERSION MATCHES "[0-9]+\\.[0-9]+\\.[0-9]+")
77 else (_Sphinx_BUILD_RESULT EQUAL 0)
78 message (WARNING "Could not determine sphinx-build version: ${_Sphinx_BUILD_ERROR}")
79 endif (_Sphinx_BUILD_RESULT EQUAL 0)
80
81 unset (_Sphinx_BUILD_ERROR)
82 unset (_Sphinx_BUILD_RESULT)
83 unset (_Sphinx_VERSION_STRING)
84
85 find_package (Python COMPONENTS Interpreter)
86 set (_Sphinx_BUILD_RESULT FALSE)
87
88 if (Python_Interpreter_FOUND)
89 # Check for Sphinx theme dependency for documentation
90 foreach (component IN LISTS Sphinx_FIND_COMPONENTS)
91 string (REGEX MATCH "^(.+_theme)$" theme_component "${component}")
92
93 if (NOT theme_component STREQUAL component)
94 continue ()
95 endif (NOT theme_component STREQUAL component)
96
97 execute_process (
98 COMMAND ${Python_EXECUTABLE} -c "import ${theme_component}"
99 ERROR_STRIP_TRAILING_WHITESPACE
100 ERROR_VARIABLE _Sphinx_BUILD_ERROR
101 OUTPUT_QUIET
102 RESULT_VARIABLE _Sphinx_BUILD_RESULT
103 )
104
105 if (_Sphinx_BUILD_RESULT EQUAL 0)
106 set (Sphinx_${component}_FOUND TRUE)
107 elseif (_Sphinx_BUILD_RESULT EQUAL 0)
108 message (WARNING "Could not determine whether Sphinx component '${theme_component}' is available: ${_Sphinx_BUILD_ERROR}")
109 set (Sphinx_${component}_FOUND FALSE)
110 endif (_Sphinx_BUILD_RESULT EQUAL 0)
111
112 unset (_Sphinx_BUILD_ERROR)
113 unset (_Sphinx_BUILD_RESULT)
114 endforeach (component)
115
116 unset (theme_component)
117 endif (Python_Interpreter_FOUND)
118endif (Sphinx_BUILD_EXECUTABLE)
119
120find_package_handle_standard_args (Sphinx
121 REQUIRED_VARS Sphinx_BUILD_EXECUTABLE
122 VERSION_VAR Sphinx_VERSION
123 HANDLE_COMPONENTS
124)