-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pre-commit : run all (format listfiles using gersemi)
- Loading branch information
1 parent
1e512fe
commit 3c34940
Showing
7 changed files
with
459 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,28 @@ | ||
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) | ||
SET(DOXYGEN_ENABLE_PREPROCESSING "YES" PARENT_SCOPE) | ||
SET(DOXYGEN_MACRO_EXPANSION "YES" PARENT_SCOPE) | ||
SET(DOXYGEN_EXCLUDE "${PROJECT_SOURCE_DIR}/include/hpp/") | ||
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) | ||
set(DOXYGEN_ENABLE_PREPROCESSING "YES" PARENT_SCOPE) | ||
set(DOXYGEN_MACRO_EXPANSION "YES" PARENT_SCOPE) | ||
set(DOXYGEN_EXCLUDE "${PROJECT_SOURCE_DIR}/include/hpp/") | ||
|
||
# We must not document octree if Octomap is not setup. | ||
# This create a build issue when building the bindings because doxygen-autodoc will | ||
# include octree.h that will include octomap.h. | ||
IF(NOT COAL_HAS_OCTOMAP) | ||
SET(DOXYGEN_EXCLUDE "${DOXYGEN_EXCLUDE} ${PROJECT_SOURCE_DIR}/include/coal/octree.h") | ||
SET(DOXYGEN_EXCLUDE "${DOXYGEN_EXCLUDE} ${PROJECT_SOURCE_DIR}/include/coal/serialization/octree.h") | ||
SET(DOXYGEN_EXCLUDE "${DOXYGEN_EXCLUDE} ${PROJECT_SOURCE_DIR}/include/coal/internal/traversal_node_octree.h") | ||
ENDIF() | ||
SET(DOXYGEN_EXCLUDE ${DOXYGEN_EXCLUDE} PARENT_SCOPE) | ||
if(NOT COAL_HAS_OCTOMAP) | ||
set( | ||
DOXYGEN_EXCLUDE | ||
"${DOXYGEN_EXCLUDE} ${PROJECT_SOURCE_DIR}/include/coal/octree.h" | ||
) | ||
set( | ||
DOXYGEN_EXCLUDE | ||
"${DOXYGEN_EXCLUDE} ${PROJECT_SOURCE_DIR}/include/coal/serialization/octree.h" | ||
) | ||
set( | ||
DOXYGEN_EXCLUDE | ||
"${DOXYGEN_EXCLUDE} ${PROJECT_SOURCE_DIR}/include/coal/internal/traversal_node_octree.h" | ||
) | ||
endif() | ||
set(DOXYGEN_EXCLUDE ${DOXYGEN_EXCLUDE} PARENT_SCOPE) | ||
|
||
SET(DOXYGEN_PREDEFINED "IS_DOXYGEN" PARENT_SCOPE) | ||
set(DOXYGEN_PREDEFINED "IS_DOXYGEN" PARENT_SCOPE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.