Skip to content

Commit

Permalink
Disable Doxygen EXTRACT_ALL
Browse files Browse the repository at this point in the history
This hides missing docstrings errors, but creates over 1k warnings.

Need to find a compromise where private? items can be left undocced no warning.
  • Loading branch information
Robadob authored and ptheywood committed Sep 21, 2021
1 parent 1d3889c commit 7d2cc4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake/dependencies/doxygen.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function(create_doxygen_target FLAMEGPU_ROOT DOXY_OUT_DIR XML_PATH)
set(DOXYGEN_PROJECT_NUMBER "")
set(DOXYGEN_PROJECT_BRIEF "Expansion of FLAMEGPU to provide middle-ware for complex systems simulations to utilise CUDA.")
set(DOXYGEN_GENERATE_LATEX NO)
set(DOXYGEN_EXTRACT_ALL YES)
set(DOXYGEN_EXTRACT_ALL NO)
set(DOXYGEN_CLASS_DIAGRAMS YES)
set(DOXYGEN_HIDE_UNDOC_RELATIONS NO)
set(DOXYGEN_CLASS_GRAPH YES)
Expand All @@ -36,10 +36,10 @@ function(create_doxygen_target FLAMEGPU_ROOT DOXY_OUT_DIR XML_PATH)
set(DOXYGEN_TEMPLATE_RELATIONS YES)
set(DOXYGEN_DOT_TRANSPARENT NO)
set(DOXYGEN_CALL_GRAPH YES)
set(DOXYGEN_RECURSIVE YES)
set(DOXYGEN_RECURSIVE YES)
set(DOXYGEN_CALLER_GRAPH YES)
set(DOXYGEN_GENERATE_TREEVIEW YES)
set(DOXYGEN_EXTRACT_PRIVATE YES)
set(DOXYGEN_EXTRACT_PRIVATE NO)
set(DOXYGEN_EXTRACT_STATIC YES)
set(DOXYGEN_EXTRACT_LOCAL_METHODS NO)
set(DOXYGEN_FILE_PATTERNS "*.h" "*.cuh" "*.c" "*.cpp" "*.cu" "*.cuhpp" "*.md" "*.hh" "*.hxx" "*.hpp" "*.h++" "*.cc" "*.cxx" "*.c++")
Expand Down

0 comments on commit 7d2cc4f

Please sign in to comment.