Pablo Speciale | 55b6c96 | 2013-03-20 17:44:04 -0700 | [diff] [blame] | 1 | # Ceres Solver - A fast non-linear least squares minimizer |
Sergiu Deitsch | a57e35b | 2023-09-09 20:55:57 +0200 | [diff] [blame] | 2 | # Copyright 2023 Google Inc. All rights reserved. |
Keir Mierle | 7492b0d | 2015-03-17 22:30:16 -0700 | [diff] [blame] | 3 | # http://ceres-solver.org/ |
Pablo Speciale | 55b6c96 | 2013-03-20 17:44:04 -0700 | [diff] [blame] | 4 | # |
| 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 Deitsch | a1c02e8 | 2023-09-10 15:25:31 +0200 | [diff] [blame] | 32 | #[=======================================================================[.rst: |
| 33 | FindSphinx |
| 34 | ========== |
Pablo Speciale | c51b11c | 2013-03-12 00:56:56 -0700 | [diff] [blame] | 35 | |
Sergiu Deitsch | a1c02e8 | 2023-09-10 15:25:31 +0200 | [diff] [blame] | 36 | Module for locating Sphinx and its components. |
Pablo Speciale | c51b11c | 2013-03-12 00:56:56 -0700 | [diff] [blame] | 37 | |
Sergiu Deitsch | a1c02e8 | 2023-09-10 15:25:31 +0200 | [diff] [blame] | 38 | This modules defines the following variables: |
Pablo Speciale | c51b11c | 2013-03-12 00:56:56 -0700 | [diff] [blame] | 39 | |
Sergiu Deitsch | a1c02e8 | 2023-09-10 15:25:31 +0200 | [diff] [blame] | 40 | ``Sphinx_FOUND`` |
| 41 | ``TRUE`` iff Sphinx and all of its components have been found. |
Pablo Speciale | c51b11c | 2013-03-12 00:56:56 -0700 | [diff] [blame] | 42 | |
Sergiu Deitsch | a1c02e8 | 2023-09-10 15:25:31 +0200 | [diff] [blame] | 43 | ``Sphinx_BUILD_EXECUTABLE`` |
| 44 | Path to the ``sphinx-build`` tool. |
| 45 | ]=======================================================================] |
Sumit Dey | 7de561e | 2021-06-19 03:09:09 +0200 | [diff] [blame] | 46 | |
Sergiu Deitsch | a1c02e8 | 2023-09-10 15:25:31 +0200 | [diff] [blame] | 47 | include (FindPackageHandleStandardArgs) |
Sumit Dey | 7de561e | 2021-06-19 03:09:09 +0200 | [diff] [blame] | 48 | |
Sergiu Deitsch | a1c02e8 | 2023-09-10 15:25:31 +0200 | [diff] [blame] | 49 | find_program (Sphinx_BUILD_EXECUTABLE |
| 50 | NAMES sphinx-build |
| 51 | PATHS /opt/local/bin |
| 52 | DOC "Sphinx documentation generator" |
| 53 | ) |
Pablo Speciale | c51b11c | 2013-03-12 00:56:56 -0700 | [diff] [blame] | 54 | |
Sergiu Deitsch | a1c02e8 | 2023-09-10 15:25:31 +0200 | [diff] [blame] | 55 | mark_as_advanced (Sphinx_BUILD_EXECUTABLE) |
Pablo Speciale | c51b11c | 2013-03-12 00:56:56 -0700 | [diff] [blame] | 56 | |
Sergiu Deitsch | a1c02e8 | 2023-09-10 15:25:31 +0200 | [diff] [blame] | 57 | if (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 Speciale | c51b11c | 2013-03-12 00:56:56 -0700 | [diff] [blame] | 66 | |
Sergiu Deitsch | a1c02e8 | 2023-09-10 15:25:31 +0200 | [diff] [blame] | 67 | 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) |
| 118 | endif (Sphinx_BUILD_EXECUTABLE) |
| 119 | |
| 120 | find_package_handle_standard_args (Sphinx |
| 121 | REQUIRED_VARS Sphinx_BUILD_EXECUTABLE |
| 122 | VERSION_VAR Sphinx_VERSION |
| 123 | HANDLE_COMPONENTS |
| 124 | ) |