Magic_Game/Doxyfile

95 lines
2.9 KiB
Plaintext
Raw Normal View History

2019-12-20 17:49:16 +08:00
# Doxyfile 1.8.16
#---------------------------------------------------------------------------
# Project related configuration options
#---------------------------------------------------------------------------
PROJECT_NAME = "Kiwano Engine"
2020-10-20 11:34:17 +08:00
PROJECT_NUMBER = v1.2.x
2019-12-20 17:49:16 +08:00
PROJECT_BRIEF =
2020-04-15 08:51:16 +08:00
PROJECT_LOGO = logo/logo_tiny.png
2019-12-20 17:49:16 +08:00
DOXYFILE_ENCODING = UTF-8
CREATE_SUBDIRS = YES
OUTPUT_LANGUAGE = Chinese
OUTPUT_DIRECTORY = docs/
EXTRACT_PRIVATE = NO
EXTRACT_STATIC = YES
EXTRACT_LOCAL_CLASSES = NO
2019-12-23 18:05:08 +08:00
HIDE_UNDOC_MEMBERS = NO
2019-12-20 17:49:16 +08:00
HIDE_UNDOC_CLASSES = NO
SHOW_INCLUDE_FILES = YES
SHOW_USED_FILES = NO
SHOW_FILES = NO
SHOW_NAMESPACES = YES
#---------------------------------------------------------------------------
# Configuration options related to the input files
#---------------------------------------------------------------------------
INPUT = src/
INPUT_ENCODING = GBK
2019-12-20 17:49:16 +08:00
FILE_PATTERNS = *.c \
*.cc \
*.cxx \
*.cpp \
*.c++ \
*.h \
*.hh \
*.hxx \
*.hpp \
2019-12-22 11:04:49 +08:00
*.h++
2019-12-20 17:49:16 +08:00
RECURSIVE = YES
2019-12-30 14:24:29 +08:00
EXCLUDE = src/3rd-party \
src/kiwano/platform/win32 \
src/kiwano/renderer/win32
2019-12-20 17:49:16 +08:00
#---------------------------------------------------------------------------
# Configuration options related to the preprocessor
#---------------------------------------------------------------------------
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
2019-12-31 10:37:29 +08:00
PREDEFINED = KGE_API= \
KGE_DOXYGEN_DO_NOT_INCLUDE= \
_Out_= \
_In_= \
_In_opt_=
2019-12-20 17:49:16 +08:00
# The INCLUDE_PATH tag can be used to specify one or more directories that
# contain include files that are not input files but should be processed by the
# preprocessor.
# This tag requires that the tag SEARCH_INCLUDES is set to YES.
2019-12-22 11:04:49 +08:00
SEARCH_INCLUDES = YES
2019-12-23 18:05:08 +08:00
INCLUDE_PATH =
INCLUDE_FILE_PATTERNS =
2019-12-20 17:49:16 +08:00
#---------------------------------------------------------------------------
# Configuration options related to the HTML output
#---------------------------------------------------------------------------
GENERATE_HTML = YES
HTML_OUTPUT = html
HTML_HEADER =
HTML_FOOTER =
HTML_STYLESHEET =
HTML_EXTRA_STYLESHEET =
2020-04-16 11:36:56 +08:00
HTML_EXTRA_FILES = logo/favicon.ico
2019-12-20 17:49:16 +08:00
GENERATE_TREEVIEW = YES
ENUM_VALUES_PER_LINE = 4
TREEVIEW_WIDTH = 250
#---------------------------------------------------------------------------
# Configuration options related to the LATEX output
#---------------------------------------------------------------------------
GENERATE_LATEX = NO