X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=Doxyfile_cxx;h=aded9292398df345dd5e3b579449426d1aea1ef8;hb=b3a25d5dc805f7f92262a2156d82b0cf5a9e5492;hp=44d675c79f079c02ebe4d7b96f3a293da019998f;hpb=18a2224fc3265deda8bc692a66bcbe489bc1837a;p=bertos.git diff --git a/Doxyfile_cxx b/Doxyfile_cxx index 44d675c7..aded9292 100755 --- a/Doxyfile_cxx +++ b/Doxyfile_cxx @@ -1,4 +1,4 @@ -# Doxyfile 1.3.8 +# Doxyfile 1.3.9.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project @@ -39,7 +39,7 @@ OUTPUT_DIRECTORY = doc/reference # files, where putting all generated files in the same directory would otherwise # cause performance problems for the file system. -CREATE_SUBDIRS = YES +CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this @@ -367,6 +367,12 @@ MAX_INITIALIZER_LINES = 30 SHOW_USED_FILES = YES +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. + +SHOW_DIRECTORIES = YES + #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- @@ -444,7 +450,8 @@ FILE_PATTERNS = *.c \ *.h++ \ *.idl \ *.odl \ - README + README \ + README.devlib # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. @@ -966,9 +973,14 @@ INCLUDE_FILE_PATTERNS = # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are -# omitted =1 is assumed. - -PREDEFINED = __linux__ +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = __linux__ \ + __unix__ \ + FORMAT(x,y,z)= \ + PGM_FUNC(x)=x # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded.