forked from jrl-umi3218/jrl-cmakemodules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sphinx.cmake
123 lines (108 loc) · 4.14 KB
/
sphinx.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# Copyright (C) 2008-2014 LAAS-CNRS, JRL AIST-CNRS.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# SPHINX_SETUP()
# --------------
#
# Look for Sphinx, add a custom rule to generate the documentation and
# install the documentation properly.
#
MACRO(SPHINX_SETUP)
SET(SPHINX_BUILD_PATH "")
# With MSVC, it is likely thant sphinx has been installed using easy-install
# directly in the python folder.
IF (MSVC)
GET_FILENAME_COMPONENT(PYTHON_ROOT ${PYTHON_EXECUTABLE} DIRECTORY)
SET(SPHINX_BUILD_PATH ${PYTHON_ROOT}/Scripts)
ENDIF(MSVC)
FIND_PROGRAM(SPHINX_BUILD sphinx-build DOC
"Sphinx documentation generator tool"
PATHS "${SPHINX_BUILD_PATH}")
IF (NOT SPHINX_BUILD)
MESSAGE(FATAL_ERROR "Failed to find sphinx")
ENDIF(NOT SPHINX_BUILD)
IF(MSVC)
# FIXME: it is impossible to trigger documentation installation
# at install, so put the target in ALL instead.
ADD_CUSTOM_TARGET(sphinx-doc ALL
COMMAND ${SPHINX_BUILD} -b html ${CMAKE_CURRENT_BINARY_DIR}/sphinx
${CMAKE_CURRENT_BINARY_DIR}/sphinx-html
COMMENT "Generating sphinx documentation"
)
ELSEIF(APPLE)
# THE DYLD_LIBRARY_PATH should be completed to run the sphinx command.
# otherwise some symbols won't be found.
SET(EXTRA_LD_PATH "\"${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}\":")
SET(EXTRA_LD_PATH "${EXTRA_LD_PATH}\"${DYNAMIC_GRAPH_PLUGINDIR}\":")
ADD_CUSTOM_TARGET(sphinx-doc
COMMAND export DYLD_LIBRARY_PATH=${EXTRA_LD_PATH}:\$DYLD_LIBRARY_PATH \;
${SPHINX_BUILD} -b html ${CMAKE_CURRENT_BINARY_DIR}/sphinx
${CMAKE_CURRENT_BINARY_DIR}/sphinx-html
COMMENT "Generating sphinx documentation"
)
INSTALL(CODE "EXECUTE_PROCESS(COMMAND ${CMAKE_MAKE_PROGRAM} sphinx-doc)")
ELSE() #UNIX
# THE LD_LIBRARY_PATH should be completed to run the sphinx command.
# otherwise some symbols won't be found.
SET(EXTRA_LD_PATH "\"${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}\":")
SET(EXTRA_LD_PATH "${EXTRA_LD_PATH}\"${DYNAMIC_GRAPH_PLUGINDIR}\":")
ADD_CUSTOM_TARGET(sphinx-doc
COMMAND export LD_LIBRARY_PATH=${EXTRA_LD_PATH}:\$LD_LIBRARY_PATH \;
${SPHINX_BUILD} -b html ${CMAKE_CURRENT_BINARY_DIR}/sphinx
${CMAKE_CURRENT_BINARY_DIR}/sphinx-html
COMMENT "Generating sphinx documentation"
)
INSTALL(CODE "EXECUTE_PROCESS(COMMAND ${CMAKE_MAKE_PROGRAM} sphinx-doc)")
ENDIF(MSVC)
ADD_CUSTOM_COMMAND(
OUTPUT
${CMAKE_BINARY_DIR}/doc/sphinx-html
COMMAND ${SPHINX_BUILD} -b html ${CMAKE_CURRENT_BINARY_DIR}/sphinx
${CMAKE_CURRENT_BINARY_DIR}/sphinx-html
COMMENT "Generating sphinx documentation"
)
# Clean generated files.
SET_PROPERTY(
DIRECTORY APPEND PROPERTY
ADDITIONAL_MAKE_CLEAN_FILES
${CMAKE_BINARY_DIR}/doc/sphinx-html
)
# Install generated files.
INSTALL(DIRECTORY ${CMAKE_BINARY_DIR}/doc/sphinx-html
DESTINATION share/doc/${PROJECT_NAME})
IF(EXISTS ${PROJECT_SOURCE_DIR}/doc/pictures)
INSTALL(DIRECTORY ${PROJECT_SOURCE_DIR}/doc/pictures
DESTINATION share/doc/${PROJECT_NAME}/sphinx-html)
ENDIF(EXISTS ${PROJECT_SOURCE_DIR}/doc/pictures)
LIST(APPEND LOGGING_WATCHED_VARIABLES
SPHINX_BUILD
)
ENDMACRO(SPHINX_SETUP)
# SPHINX_FINALIZE()
# -----------------
#
# Generate Sphinx related files.
#
MACRO(SPHINX_FINALIZE)
CONFIGURE_FILE(
${CMAKE_CURRENT_SOURCE_DIR}/sphinx/index.rst.in
${CMAKE_CURRENT_BINARY_DIR}/sphinx/index.rst
@ONLY
)
CONFIGURE_FILE(
${CMAKE_CURRENT_SOURCE_DIR}/sphinx/conf.py.in
${CMAKE_CURRENT_BINARY_DIR}/sphinx/conf.py
@ONLY
)
ENDMACRO(SPHINX_FINALIZE)