2021-01-15 15:15:17 +03:00
|
|
|
# Doxyfile 1.8.18
|
|
|
|
|
|
|
|
|
|
# This file describes the settings to be used by the documentation system
|
|
|
|
|
# doxygen (www.doxygen.org) for a project.
|
|
|
|
|
#
|
|
|
|
|
# All text after a double hash (##) is considered a comment and is placed in
|
|
|
|
|
# front of the TAG it is preceding.
|
|
|
|
|
#
|
|
|
|
|
# All text after a single hash (#) is considered a comment and will be ignored.
|
|
|
|
|
# The format is:
|
|
|
|
|
# TAG = value [value, ...]
|
|
|
|
|
# For lists, items can also be appended using:
|
|
|
|
|
# TAG += value [value, ...]
|
|
|
|
|
# Values that contain spaces should be placed between quotes (\" \").
|
|
|
|
|
|
2020-12-01 06:33:36 +03:00
|
|
|
@INCLUDE = "@IE_CONFIG_BUILD@"
|
2020-11-27 13:13:59 +03:00
|
|
|
|
|
|
|
|
EXCLUDE_SYMBOLS =
|
|
|
|
|
|
|
|
|
|
PREDEFINED =
|
|
|
|
|
|
|
|
|
|
EXCLUDE_PATTERNS = */python/*
|
|
|
|
|
|
|
|
|
|
FILE_PATTERNS = *.cpp \
|
|
|
|
|
*.c \
|
|
|
|
|
*.hpp \
|
|
|
|
|
*.h
|
|
|
|
|
|
2020-12-01 06:33:36 +03:00
|
|
|
LAYOUT_FILE = "@NGRAPH_CPP_LAYOUT_BUILD@"
|
2020-11-27 13:13:59 +03:00
|
|
|
|
2020-12-01 06:33:36 +03:00
|
|
|
INPUT = "@NGRAPH_DIR@/core/include/" \
|
2021-09-10 15:31:27 +03:00
|
|
|
"@NGRAPH_DIR@/frontend/onnx/frontend/include/" \
|
|
|
|
|
"@NGRAPH_DIR@/frontend/paddlepaddle/frontend/include/"
|
2020-11-27 13:13:59 +03:00
|
|
|
|
2020-12-24 10:30:51 +03:00
|
|
|
HTML_OUTPUT = "@NGRAPH_CPP_OUTPUT@"
|
2020-11-27 13:13:59 +03:00
|
|
|
|
2020-12-01 06:33:36 +03:00
|
|
|
GENERATE_TAGFILE = "@DOCS_BUILD_DIR@/ngraph_cpp_api.tag"
|
2020-12-03 14:02:38 +03:00
|
|
|
|
2020-12-24 10:30:51 +03:00
|
|
|
WARN_LOGFILE = "@DOCS_BUILD_DIR@/ngraph_cpp_api.log"
|