-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDoxyfile
More file actions
31 lines (25 loc) · 1.29 KB
/
Copy pathDoxyfile
File metadata and controls
31 lines (25 loc) · 1.29 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
# Project-related information
PROJECT_NAME = "signals-cpp"
OUTPUT_DIRECTORY = "docs" # Directory where the docs are generated
RECURSIVE = YES # Recursively scan all subdirectories
EXTRACT_ALL = YES # Extract all code comments
# HTML output settings
GENERATE_HTML = YES # Enable HTML documentation
GENERATE_LATEX = NO # Disable LaTeX documentation
HTML_OUTPUT = . # Specify HTML output directory
# Awesome style settings
GENERATE_TREEVIEW = YES # optional. Also works without treeview
DISABLE_INDEX = NO
FULL_SIDEBAR = NO
HTML_EXTRA_STYLESHEET = docs/doxygen-awesome-css/doxygen-awesome.css
HTML_COLORSTYLE = LIGHT # required with Doxygen >= 1.9.5
# MathJax integration (for math rendering)
USE_MATHJAX = YES # Enable MathJax support for math rendering
# Input settings (multiple directories)
INPUT = include # Include both C++ and Python directories for parsing
# File patterns
FILE_PATTERNS = *.cpp *.h *.py # Specify the file types to be parsed
# Additional settings for LaTeX-style math
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
EXPAND_ONLY_PREDEF = NO