# Doxyfile — generated by just-makeit.  Edit freely.
PROJECT_NAME           = "<<project>>"
PROJECT_NUMBER         = <<version>>
OUTPUT_DIRECTORY       = docs/doxygen
INPUT                  = native/inc native/src
RECURSIVE              = YES
EXTRACT_ALL            = YES
EXTRACT_STATIC         = YES
GENERATE_HTML          = YES
HTML_OUTPUT            = html
GENERATE_LATEX         = NO
QUIET                  = YES
WARN_IF_UNDOCUMENTED   = NO
# ...but a function that HAS a doc block and leaves a parameter undocumented is
# a real gap, and the cheapest possible check for it: Doxygen already knows the
# signature and the @param set. WARN_IF_UNDOCUMENTED stays NO so an entirely
# undocumented declaration is not noise; this catches the half-documented one,
# which is the doc-rot shape (a parameter added later, @param never updated).
WARN_NO_PARAMDOC       = YES
FILE_PATTERNS          = *.h *.c
EXCLUDE_PATTERNS       = */pyex_common.h */clib_common.h
FULL_PATH_NAMES        = NO
JAVADOC_AUTOBRIEF      = YES
OPTIMIZE_OUTPUT_FOR_C  = YES
