2024-09-03 16:36:30 +00:00
|
|
|
PROJECT_NAME = "Mbed TLS v4.0.0"
|
2018-01-19 15:21:11 +00:00
|
|
|
OUTPUT_DIRECTORY = ../apidoc/
|
2011-01-06 12:28:03 +00:00
|
|
|
FULL_PATH_NAMES = NO
|
|
|
|
OPTIMIZE_OUTPUT_FOR_C = YES
|
|
|
|
EXTRACT_ALL = YES
|
|
|
|
EXTRACT_PRIVATE = YES
|
|
|
|
EXTRACT_STATIC = YES
|
|
|
|
CASE_SENSE_NAMES = NO
|
2024-06-17 11:52:55 +00:00
|
|
|
INPUT = ../include ../tf-psa-crypto/include input ../tf-psa-crypto/drivers/builtin/include ../tests/include/alt-dummy
|
2024-11-06 13:32:52 +00:00
|
|
|
EXCLUDE = ../tf-psa-crypto/drivers/builtin/include/mbedtls/build_info.h
|
2015-03-10 17:37:30 +00:00
|
|
|
FILE_PATTERNS = *.h
|
2011-01-06 12:28:03 +00:00
|
|
|
RECURSIVE = YES
|
2017-12-22 14:34:37 +00:00
|
|
|
EXCLUDE_SYMLINKS = YES
|
2011-01-06 12:28:03 +00:00
|
|
|
SOURCE_BROWSER = YES
|
|
|
|
REFERENCED_BY_RELATION = YES
|
|
|
|
REFERENCES_RELATION = YES
|
|
|
|
ALPHABETICAL_INDEX = NO
|
|
|
|
HTML_OUTPUT = .
|
|
|
|
HTML_TIMESTAMP = YES
|
2022-01-21 13:43:44 +00:00
|
|
|
SEARCHENGINE = YES
|
2011-01-06 12:28:03 +00:00
|
|
|
GENERATE_LATEX = NO
|
2023-03-22 17:35:14 +00:00
|
|
|
GENERATE_XML = YES
|
2021-05-20 12:41:22 +00:00
|
|
|
MACRO_EXPANSION = YES
|
|
|
|
EXPAND_ONLY_PREDEF = YES
|
2024-06-17 11:52:55 +00:00
|
|
|
INCLUDE_PATH = ../include ../tf-psa-crypto/include ../tf-psa-crypto/drivers/builtin/include
|
2021-05-20 12:41:22 +00:00
|
|
|
EXPAND_AS_DEFINED = MBEDTLS_PRIVATE
|
2011-01-06 12:28:03 +00:00
|
|
|
CLASS_DIAGRAMS = NO
|
|
|
|
HAVE_DOT = YES
|
2013-09-10 14:17:15 +00:00
|
|
|
DOT_GRAPH_MAX_NODES = 200
|
2011-01-06 12:28:03 +00:00
|
|
|
MAX_DOT_GRAPH_DEPTH = 1000
|
|
|
|
DOT_TRANSPARENT = YES
|
2023-02-14 18:15:40 +00:00
|
|
|
|
2023-02-23 12:37:54 +00:00
|
|
|
# We mostly use \retval declarations to document which error codes a function
|
2023-02-23 12:03:30 +00:00
|
|
|
# can return. The reader can follow the hyperlink to the definition of the
|
|
|
|
# constant to get the generic documentation of that error code. If we don't
|
|
|
|
# have anything to say about the specific error code for the specific
|
|
|
|
# function, we can leave the description part of the \retval command blank.
|
|
|
|
# This is perfectly valid as far as Doxygen is concerned. However, with
|
|
|
|
# Clang >=15, the -Wdocumentation option emits a warning for empty
|
|
|
|
# descriptions.
|
2023-02-14 18:15:40 +00:00
|
|
|
# https://github.com/Mbed-TLS/mbedtls/issues/6960
|
|
|
|
# https://github.com/llvm/llvm-project/issues/60315
|
2023-02-23 12:03:30 +00:00
|
|
|
# As a workaround, you can write something like
|
2023-02-21 09:21:12 +00:00
|
|
|
# \retval #PSA_ERROR_INSUFFICIENT_MEMORY \emptydescription
|
2023-02-23 12:03:30 +00:00
|
|
|
# This avoids writing redundant text and keeps Clang happy.
|
2023-02-14 18:15:40 +00:00
|
|
|
ALIASES += emptydescription=""
|
2023-03-14 14:20:38 +00:00
|
|
|
|
2023-03-16 16:07:12 +00:00
|
|
|
# Define away Mbed TLS macros that make parsing definitions difficult.
|
|
|
|
# MBEDTLS_DEPRECATED is not included in this list as it's important to
|
|
|
|
# display deprecated status in the documentation.
|
|
|
|
PREDEFINED = "MBEDTLS_CHECK_RETURN_CRITICAL=" \
|
|
|
|
"MBEDTLS_CHECK_RETURN_TYPICAL=" \
|
|
|
|
"MBEDTLS_CHECK_RETURN_OPTIONAL=" \
|
|
|
|
"MBEDTLS_PRINTF_ATTRIBUTE(a,b)=" \
|
2023-07-03 10:52:37 +00:00
|
|
|
"__DOXYGEN__" \
|
2023-03-16 16:07:12 +00:00
|
|
|
|