Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Humanoid Path Planner
hpp-fcl
Commits
3a4dc1c5
Commit
3a4dc1c5
authored
Jul 03, 2020
by
Joseph Mirabel
Browse files
Add option to turn off generation of Python documentation.
parent
f5e1a892
Changes
1
Hide whitespace changes
Inline
Side-by-side
python/CMakeLists.txt
View file @
3a4dc1c5
...
...
@@ -42,7 +42,11 @@ SET(${LIBRARY_NAME}_HEADERS
fcl.hh
)
IF
(
NOT DOXYGEN_FOUND
OR
(
APPLE AND PYTHON_VERSION_MAJOR LESS 3
))
SET
(
ENABLE_PYTHON_DOXYGEN_AUTODOC TRUE CACHE BOOL
"Enable automatic documentation of Python bindings from Doxygen documentation"
)
IF
(
NOT ENABLE_PYTHON_DOXYGEN_AUTODOC
OR NOT DOXYGEN_FOUND
OR
(
APPLE AND PYTHON_VERSION_MAJOR LESS 3
))
# Disable documentation on APPLE for python 2.
SET
(
ENABLE_DOXYGEN_AUTODOC FALSE
)
ELSE
()
SET
(
ENABLE_DOXYGEN_AUTODOC TRUE
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment