-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDoxyfile.in
More file actions
26 lines (25 loc) · 1.01 KB
/
Doxyfile.in
File metadata and controls
26 lines (25 loc) · 1.01 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
#
# @file Doxyfile
# @brief Doxyfile for generating Doxygen documentation.
#
# @author Chris Vig (chris@invictus.so)
# @date 2025-08-25
# @cpyrt © 2025 by Chris Vig. Licensed under the GNU General Public License v3 (GPLv3).
#
# NOTE:
# CMake processes Doxyfile.in in the root directory, and saves it to build/Doxyfile, which is then used to generate the
# documentation with Doxygen by running `make doxygen`.
#
PROJECT_NAME = @PROJECT_NAME@
OUTPUT_DIRECTORY = @CMAKE_CURRENT_BINARY_DIR@/docs
INPUT = @CMAKE_SOURCE_DIR@/readme.md \
@CMAKE_SOURCE_DIR@/src
RECURSIVE = YES
EXTRACT_ALL = @DOXYGEN_EXTRACT_ALL@
WARN_IF_UNDOCUMENTED = @DOXYGEN_WARN_IF_UNDOCUMENTED@
GENERATE_LATEX = NO
GENERATE_HTML = YES
EXCLUDE_SYMBOLS = _Static_assert ISR
USE_MDFILE_AS_MAINPAGE = @CMAKE_SOURCE_DIR@/readme.md
MARKDOWN_SUPPORT = YES
ALIASES += cpyrt=\copyright