-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDoxyfile
More file actions
49 lines (44 loc) · 1.93 KB
/
Copy pathDoxyfile
File metadata and controls
49 lines (44 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# SPDX-FileCopyrightText: 2026 Antchain (SHANGHAI) Digital Technology Co., Ltd.
# SPDX-License-Identifier: Apache-2.0
# =============================================================================
# Doxygen configuration for AntChainTrustSDK
# =============================================================================
# Generate API documentation from the public headers and component sources:
#
# doxygen Doxyfile
#
# Output is written to docs/html/ (git-ignored). Only a curated set of
# public interfaces is documented; 3rdparts/ and build artifacts are excluded.
# =============================================================================
# --- Project ---------------------------------------------------------------
PROJECT_NAME = "AntChainTrustSDK"
PROJECT_NUMBER = 1.0.0
PROJECT_BRIEF = "Modular IoT framework for embedded systems"
OUTPUT_DIRECTORY = docs
CREATE_SUBDIRS = NO
# --- Input -----------------------------------------------------------------
INPUT = include \
source/core/include \
source/components \
source/adapter/include \
examples \
README.md \
CONTRIBUTING.md \
SECURITY.md
USE_MDFILE_AS_MAINPAGE = README.md
FILE_PATTERNS = *.c *.h *.md
RECURSIVE = YES
EXCLUDE_PATTERNS = */tests/* */build/* */3rdparts/*
# --- Build -----------------------------------------------------------------
EXTRACT_ALL = NO
EXTRACT_STATIC = NO
OPTIMIZE_OUTPUT_FOR_C = YES
JAVADOC_AUTOBRIEF = YES
WARN_IF_UNDOCUMENTED = NO
QUIET = YES
MARKDOWN_SUPPORT = YES
# --- Output ----------------------------------------------------------------
GENERATE_HTML = YES
GENERATE_LATEX = NO
HTML_OUTPUT = html
SOURCE_BROWSER = YES