-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDoxyfile
More file actions
41 lines (33 loc) · 1.27 KB
/
Copy pathDoxyfile
File metadata and controls
41 lines (33 loc) · 1.27 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
PROJECT_NAME = "Tempest"
PROJECT_BRIEF = "Documentation for Tempest library"
INPUT = tempest/src/proxies/Tempest.cuh
OUTPUT_DIRECTORY = docs
RECURSIVE = YES # Ensures all subdirectories are included
# File handling
FILE_PATTERNS = *.h *.hpp *.cuh # Ensures .cuh files are processed
EXTENSION_MAPPING = cuh=C++ # Treat .cuh files as C++ headers
# Output format
GENERATE_HTML = YES
GENERATE_LATEX = NO
# Extraction settings
EXTRACT_ALL = NO # Do NOT extract everything automatically
EXTRACT_PRIVATE = NO # Do NOT include private members
EXTRACT_STATIC = YES
EXTRACT_LOCAL_METHODS = NO # Do NOT include local class methods
# CUDA-specific handling
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
PREDEFINED = "__global__=" "__device__=" "__host__="
# Source browsing
SOURCE_BROWSER = YES
INLINE_SOURCES = YES
VERBATIM_HEADERS = YES
# Warnings & optimizations
WARN_IF_UNDOCUMENTED = YES
WARN_IF_DOC_ERROR = YES
QUIET = NO # Set to YES to suppress output
# Markdown support
MARKDOWN_SUPPORT = YES
USE_MDFILE_AS_MAINPAGE = README.md # If you have a README file
# Optimizations
EXCLUDE_PATTERNS = */test/* */examples/*