Salome HOME
Update copyrights 2014.
[modules/yacs.git] / adm / cmake / FindSphinx.cmake
1 # - Sphinx detection
2 #
3 # Output variables:
4 #   SPHINX_EXECUTABLE - path to the Sphinx executable
5 #   SPHINX_PYTHONPATH - path to the Sphinx Python modules                 
6
7 ###########################################################################
8 # Copyright (C) 2007-2014  CEA/DEN, EDF R&D
9 #
10 # This library is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Lesser General Public
12 # License as published by the Free Software Foundation; either
13 # version 2.1 of the License, or (at your option) any later version.
14 #
15 # This library is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 # Lesser General Public License for more details.
19 #
20 # You should have received a copy of the GNU Lesser General Public
21 # License along with this library; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23 #
24 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
25 #
26
27 FIND_PROGRAM(SPHINX_EXECUTABLE sphinx-build PATH_SUFFIXES Scripts)
28
29 # Get root dir locally, going up two levels from the exec:
30 GET_FILENAME_COMPONENT(_tmp_ROOT_DIR "${SPHINX_EXECUTABLE}" PATH)
31 GET_FILENAME_COMPONENT(_tmp_ROOT_DIR "${_tmp_ROOT_DIR}" PATH)
32 IF(WIN32)
33   SET(SPHINX_PYTHONPATH "${_tmp_ROOT_DIR}/lib/site-packages")
34 ELSE()
35   SET(SPHINX_PYTHONPATH "${_tmp_ROOT_DIR}/lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages")
36 ENDIF()
37 # Handle the standard arguments of the find_package() command:
38 INCLUDE(FindPackageHandleStandardArgs)
39 FIND_PACKAGE_HANDLE_STANDARD_ARGS(Sphinx REQUIRED_VARS SPHINX_EXECUTABLE)
40