@@ -38,7 +38,7 @@ PROJECT_NAME = @PROJECT_NAME@
3838# could be handy for archiving the generated documentation or if some version
3939# control system is used.
4040
41- PROJECT_NUMBER =
41+ PROJECT_NUMBER = @PROJECT_VERSION@
4242
4343# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444# for a project that appears at the top of each page and should give viewer a
@@ -144,7 +144,7 @@ FULL_PATH_NAMES = YES
144144# will be relative from the directory where doxygen is started.
145145# This tag requires that the tag FULL_PATH_NAMES is set to YES.
146146
147- STRIP_FROM_PATH = .
147+ STRIP_FROM_PATH = @CMAKE_SOURCE_DIR@
148148
149149# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
150150# path mentioned in the documentation of a class, which tells the reader which
@@ -153,7 +153,7 @@ STRIP_FROM_PATH = .
153153# specify the list of include paths that are normally passed to the compiler
154154# using the -I flag.
155155
156- STRIP_FROM_INC_PATH = .
156+ STRIP_FROM_INC_PATH = @CMAKE_SOURCE_DIR@/include
157157
158158# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
159159# less readable) file names. This can be useful is your file systems doesn't
@@ -169,7 +169,7 @@ SHORT_NAMES = NO
169169# description.)
170170# The default value is: NO.
171171
172- JAVADOC_AUTOBRIEF = NO
172+ JAVADOC_AUTOBRIEF = YES
173173
174174# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
175175# line (until the first dot) of a Qt-style comment as the brief description. If
@@ -404,13 +404,13 @@ EXTRACT_ALL = YES
404404# be included in the documentation.
405405# The default value is: NO.
406406
407- EXTRACT_PRIVATE = YES
407+ EXTRACT_PRIVATE = NO
408408
409409# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal
410410# scope will be included in the documentation.
411411# The default value is: NO.
412412
413- EXTRACT_PACKAGE = YES
413+ EXTRACT_PACKAGE = NO
414414
415415# If the EXTRACT_STATIC tag is set to YES all static members of a file will be
416416# included in the documentation.
@@ -494,7 +494,7 @@ CASE_SENSE_NAMES = YES
494494# scope will be hidden.
495495# The default value is: NO.
496496
497- HIDE_SCOPE_NAMES = NO
497+ HIDE_SCOPE_NAMES = YES
498498
499499# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
500500# the files that are included by a file in the documentation of that file.
@@ -526,7 +526,7 @@ INLINE_INFO = YES
526526# name. If set to NO the members will appear in declaration order.
527527# The default value is: YES.
528528
529- SORT_MEMBER_DOCS = YES
529+ SORT_MEMBER_DOCS = NO
530530
531531# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
532532# descriptions of file, namespace and class members alphabetically by member
@@ -546,14 +546,14 @@ SORT_BRIEF_DOCS = NO
546546# detailed member documentation.
547547# The default value is: NO.
548548
549- SORT_MEMBERS_CTORS_1ST = NO
549+ SORT_MEMBERS_CTORS_1ST = YES
550550
551551# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
552552# of group names into alphabetical order. If set to NO the group names will
553553# appear in their defined order.
554554# The default value is: NO.
555555
556- SORT_GROUP_NAMES = NO
556+ SORT_GROUP_NAMES = YES
557557
558558# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
559559# fully-qualified names, including namespaces. If set to NO, the class list will
@@ -624,7 +624,7 @@ MAX_INITIALIZER_LINES = 30
624624# will mention the files that were used to generate the documentation.
625625# The default value is: YES.
626626
627- SHOW_USED_FILES = YES
627+ SHOW_USED_FILES = NO
628628
629629# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
630630# will remove the Files entry from the Quick Index and from the Folder Tree View
@@ -638,7 +638,7 @@ SHOW_FILES = YES
638638# Folder Tree View (if specified).
639639# The default value is: YES.
640640
641- SHOW_NAMESPACES = YES
641+ SHOW_NAMESPACES = NO
642642
643643# The FILE_VERSION_FILTER tag can be used to specify a program or script that
644644# doxygen should invoke to get the current version for each file (typically from
@@ -811,7 +811,7 @@ EXCLUDE_SYMBOLS =
811811# that contain example code fragments that are included (see the \include
812812# command).
813813
814- EXAMPLE_PATH =
814+ EXAMPLE_PATH = @CMAKE_SOURCE_DIR@/examples
815815
816816# If the value of the EXAMPLE_PATH tag contains directories, you can use the
817817# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
@@ -892,7 +892,7 @@ USE_MDFILE_AS_MAINPAGE =
892892# also VERBATIM_HEADERS is set to NO.
893893# The default value is: NO.
894894
895- SOURCE_BROWSER = YES
895+ SOURCE_BROWSER = NO
896896
897897# Setting the INLINE_SOURCES tag to YES will include the body of functions,
898898# classes and enums directly into the documentation.
@@ -965,7 +965,7 @@ USE_HTAGS = NO
965965# See also: Section \class.
966966# The default value is: YES.
967967
968- VERBATIM_HEADERS = YES
968+ VERBATIM_HEADERS = NO
969969
970970#---------------------------------------------------------------------------
971971# Configuration options related to the alphabetical class index
@@ -976,7 +976,7 @@ VERBATIM_HEADERS = YES
976976# classes, structs, unions or interfaces.
977977# The default value is: YES.
978978
979- ALPHABETICAL_INDEX = YES
979+ ALPHABETICAL_INDEX = NO
980980
981981# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
982982# which the alphabetical index list will be split.
@@ -1068,7 +1068,7 @@ HTML_STYLESHEET =
10681068# see the documentation.
10691069# This tag requires that the tag GENERATE_HTML is set to YES.
10701070
1071- HTML_EXTRA_STYLESHEET =
1071+ HTML_EXTRA_STYLESHEET = @CMAKE_SOURCE_DIR@/Doxyextra.css
10721072
10731073# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
10741074# other source files which should be copied to the HTML output directory. Note
@@ -1466,7 +1466,7 @@ MATHJAX_CODEFILE =
14661466# The default value is: YES.
14671467# This tag requires that the tag GENERATE_HTML is set to YES.
14681468
1469- SEARCHENGINE = YES
1469+ SEARCHENGINE = NO
14701470
14711471# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
14721472# implemented using a web server instead of a web client using Javascript. There
@@ -1883,15 +1883,15 @@ ENABLE_PREPROCESSING = YES
18831883# The default value is: NO.
18841884# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
18851885
1886- MACRO_EXPANSION = NO
1886+ MACRO_EXPANSION = YES
18871887
18881888# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
18891889# the macro expansion is limited to the macros specified with the PREDEFINED and
18901890# EXPAND_AS_DEFINED tags.
18911891# The default value is: NO.
18921892# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
18931893
1894- EXPAND_ONLY_PREDEF = NO
1894+ EXPAND_ONLY_PREDEF = YES
18951895
18961896# If the SEARCH_INCLUDES tag is set to YES the includes files in the
18971897# INCLUDE_PATH will be searched if a #include is found.
@@ -1923,7 +1923,7 @@ INCLUDE_FILE_PATTERNS =
19231923# recursively expanded use the := operator instead of the = operator.
19241924# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
19251925
1926- PREDEFINED =
1926+ PREDEFINED = LIBFREENECT2_API
19271927
19281928# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
19291929# tag can be used to specify a list of macro names that should be expanded. The
0 commit comments