blob: 075880c5d0d1e8791ec1cd7fe323e95086ddecf0 [file] [log] [blame]
Gilles Peskine550d1472023-08-02 12:50:23 +02001PROJECT_NAME = "mbed TLS v3.4.1"
Krzysztof Stachowiaka0188d62018-01-19 16:21:11 +01002OUTPUT_DIRECTORY = ../apidoc/
Paul Bakker37ca75d2011-01-06 12:28:03 +00003FULL_PATH_NAMES = NO
Paul Bakker37ca75d2011-01-06 12:28:03 +00004OPTIMIZE_OUTPUT_FOR_C = YES
Paul Bakker37ca75d2011-01-06 12:28:03 +00005EXTRACT_ALL = YES
Paul Bakker37ca75d2011-01-06 12:28:03 +00006EXTRACT_PRIVATE = YES
Paul Bakker37ca75d2011-01-06 12:28:03 +00007EXTRACT_STATIC = YES
Paul Bakker37ca75d2011-01-06 12:28:03 +00008CASE_SENSE_NAMES = NO
Gilles Peskinea9daa5c2018-09-26 17:49:57 +02009INPUT = ../include input
Manuel Pégourié-Gonnard27d81392015-03-10 17:37:30 +000010FILE_PATTERNS = *.h
Paul Bakker37ca75d2011-01-06 12:28:03 +000011RECURSIVE = YES
Gilles Peskine11d3cf42017-12-22 15:34:37 +010012EXCLUDE_SYMLINKS = YES
Paul Bakker37ca75d2011-01-06 12:28:03 +000013SOURCE_BROWSER = YES
Paul Bakker37ca75d2011-01-06 12:28:03 +000014REFERENCED_BY_RELATION = YES
Paul Bakker37ca75d2011-01-06 12:28:03 +000015REFERENCES_RELATION = YES
Paul Bakker37ca75d2011-01-06 12:28:03 +000016ALPHABETICAL_INDEX = NO
Paul Bakker37ca75d2011-01-06 12:28:03 +000017HTML_OUTPUT = .
Paul Bakker37ca75d2011-01-06 12:28:03 +000018HTML_TIMESTAMP = YES
Andrzej Kurek47cfd152022-01-21 08:43:44 -050019SEARCHENGINE = YES
Paul Bakker37ca75d2011-01-06 12:28:03 +000020GENERATE_LATEX = NO
Mateusz Starzykbeb95b42021-05-20 14:41:22 +020021MACRO_EXPANSION = YES
Mateusz Starzykbeb95b42021-05-20 14:41:22 +020022EXPAND_ONLY_PREDEF = YES
Andrzej Kurek593adc82020-03-27 12:58:13 -040023INCLUDE_PATH = ../include
Mateusz Starzykbeb95b42021-05-20 14:41:22 +020024EXPAND_AS_DEFINED = MBEDTLS_PRIVATE
Paul Bakker37ca75d2011-01-06 12:28:03 +000025CLASS_DIAGRAMS = NO
Paul Bakker37ca75d2011-01-06 12:28:03 +000026HAVE_DOT = YES
Paul Bakker13a94a12013-09-10 16:17:15 +020027DOT_GRAPH_MAX_NODES = 200
Paul Bakker37ca75d2011-01-06 12:28:03 +000028MAX_DOT_GRAPH_DEPTH = 1000
Paul Bakker37ca75d2011-01-06 12:28:03 +000029DOT_TRANSPARENT = YES
Gilles Peskine8ea7d852023-02-14 19:15:40 +010030
Gilles Peskine2fb4e142023-02-23 13:37:54 +010031# We mostly use \retval declarations to document which error codes a function
Gilles Peskine4348a832023-02-23 13:03:30 +010032# can return. The reader can follow the hyperlink to the definition of the
33# constant to get the generic documentation of that error code. If we don't
34# have anything to say about the specific error code for the specific
35# function, we can leave the description part of the \retval command blank.
36# This is perfectly valid as far as Doxygen is concerned. However, with
37# Clang >=15, the -Wdocumentation option emits a warning for empty
38# descriptions.
Gilles Peskine8ea7d852023-02-14 19:15:40 +010039# https://github.com/Mbed-TLS/mbedtls/issues/6960
40# https://github.com/llvm/llvm-project/issues/60315
Gilles Peskine4348a832023-02-23 13:03:30 +010041# As a workaround, you can write something like
Gilles Peskine787f7c82023-02-21 10:21:12 +010042# \retval #PSA_ERROR_INSUFFICIENT_MEMORY \emptydescription
Gilles Peskine4348a832023-02-23 13:03:30 +010043# This avoids writing redundant text and keeps Clang happy.
Gilles Peskine8ea7d852023-02-14 19:15:40 +010044ALIASES += emptydescription=""