Skip to content

Commit 74baf9f

Browse files
committed
Setup Doxygen
1 parent 07507a5 commit 74baf9f

6 files changed

Lines changed: 2939 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
.vscode/c_cpp_properties.json
44
.vscode/launch.json
55
.vscode/ipch
6+
/docs/doxygen-out

.vscode/tasks.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "Build API Docs (Windows)",
8+
"type": "shell",
9+
"command": ".\\docs\\Docs_RunDoxygen.bat",
10+
},
11+
{
12+
"label": "Build & Open API Docs (Windows)",
13+
"type": "shell",
14+
"command": ".\\docs\\Docs_RunDoxygenOpen.bat",
15+
"problemMatcher": [],
16+
"group": {
17+
"kind": "build",
18+
"isDefault": false
19+
}
20+
}
21+
]
22+
}

docs/Docs_RunDoxygen.bat

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@echo Generating Documentation
2+
3+
"C:\Program Files\doxygen\bin\doxygen.exe" ".\docs\config\Doxyfile"
4+

docs/Docs_RunDoxygenOpen.bat

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@echo Generating Documentation
2+
3+
"C:\Program Files\doxygen\bin\doxygen.exe" ".\docs\config\Doxyfile"
4+
5+
@echo Opening HTML documentation in browser...
6+
.\docs\doxygen-out\html\index.html
7+

docs/OpenGeneratedHTMLDocs.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@echo Opening HTML documentation in browser...
2+
.\docs\generated\html\index.html
3+

0 commit comments

Comments
 (0)