Browse Source

chore(doxygen): treat .h as C++ includes when generating docs

Fixes warnings about missing declarations & probably fixes generated docs.
pull/3852/head
Zetok Zalbavar 9 years ago
parent
commit
b798bac064
No known key found for this signature in database
GPG Key ID: C953D3880212068A
  1. 7
      doxygen.conf

7
doxygen.conf

@ -7,9 +7,10 @@ GENERATE_TODOLIST = YES @@ -7,9 +7,10 @@ GENERATE_TODOLIST = YES
GENERATE_TESTLIST = YES
# Input
INPUT = src
FILE_PATTERNS = *.h *.cpp
RECURSIVE = YES
INPUT = src
FILE_PATTERNS = *.h *.cpp
EXTENSION_MAPPING = h=C++
RECURSIVE = YES
# Output
OUTPUT_DIRECTORY = doc

Loading…
Cancel
Save