Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs_input/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ set(DOXYGEN_EXAMPLE_DIR ${PROJECT_SOURCE_DIR}/examples)
set(DOXYGEN_EXCLUDE_DIR ${PROJECT_SOURCE_DIR}/third_party/*)
set(DOXYGEN_EXCLUDE_DIR2 ${PROJECT_BINARY_DIR}/*)
set(DOXYGEN_EXCLUDE_DIR3 ${PROJECT_SOURCE_DIR}/build*)
set(DOXYGEN_EXCLUDE_DIR4 ${PROJECT_SOURCE_DIR}/examples/cmake_sample_project/build*)
set(DOXYXML_DIR ${PROJECT_BINARY_DIR}/doxygen/xml/)
set(DOXYFILE_IN ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in)
set(DOXYFILE_OUT ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
Expand Down Expand Up @@ -67,4 +68,4 @@ add_custom_command(OUTPUT ${SPHINX_INDEX_FILE}
COMMENT "Generating documentation with Sphinx")

# Nice named target so we can run the job easily
add_custom_target(Sphinx ALL DEPENDS ${SPHINX_INDEX_FILE})
add_custom_target(Sphinx ALL DEPENDS ${SPHINX_INDEX_FILE})
1 change: 1 addition & 0 deletions docs_input/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -885,6 +885,7 @@ EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS = "@DOXYGEN_EXCLUDE_DIR@"
EXCLUDE_PATTERNS += "@DOXYGEN_EXCLUDE_DIR2@"
EXCLUDE_PATTERNS += "@DOXYGEN_EXCLUDE_DIR3@"
EXCLUDE_PATTERNS += "@DOXYGEN_EXCLUDE_DIR4@"

# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
Expand Down