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
Guilhem Saurel
hpp-fcl
Commits
1b877f4a
Unverified
Commit
1b877f4a
authored
Apr 20, 2020
by
Joseph Mirabel
Committed by
GitHub
Apr 20, 2020
Browse files
Merge pull request #157 from jmirabel/devel
Fix generation of XML documentation.
parents
ab128713
f4ba6547
Changes
5
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
1b877f4a
...
...
@@ -148,6 +148,7 @@ SET(${PROJECT_NAME}_HEADERS
include/hpp/fcl/internal/traversal.h
)
add_subdirectory
(
doc
)
add_subdirectory
(
src
)
if
(
BUILD_PYTHON_INTERFACE
)
add_subdirectory
(
python
)
...
...
cmake
@
dcec7d7b
Compare
078c4aee
...
dcec7d7b
Subproject commit
078c4aee2d9d6c50007d587480b3e13dd1cca0bd
Subproject commit
dcec7d7b7a358f3b638b033f6be13273a0d0c6b3
doc/CMakeLists.txt
0 → 100644
View file @
1b877f4a
SET
(
DOXYGEN_XML_OUTPUT
"doxygen-xml"
PARENT_SCOPE
)
SET
(
DOXYGEN_FILE_PATTERNS
"*.h *.hh *.hxx"
PARENT_SCOPE
)
SET
(
DOXYGEN_GENERATE_XML
"YES"
PARENT_SCOPE
)
SET
(
DOXYGEN_EXPAND_ONLY_PREDEF
"NO"
PARENT_SCOPE
)
doc/Doxyfile.extra.in
deleted
100644 → 0
View file @
ab128713
FILE_PATTERNS = *.h *.hh *.hxx
GENERATE_XML = YES
EXPAND_ONLY_PREDEF = NO
doc/python/doxygen_xml_parser.py
View file @
1b877f4a
...
...
@@ -417,6 +417,9 @@ class ClassCompound (CompoundBase):
return
include
=
self
.
definition
.
find
(
'includes'
)
if
include
is
None
:
output
.
err
(
"Does not know where to write doc of"
,
self
.
name
)
return
output
.
open
(
include
.
text
)
output
.
out
(
template_include_extern
.
format
(
filename
=
include
.
text
))
output
.
out
(
template_open_namespace
.
format
(
namespace
=
"doxygen"
))
...
...
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