Skip to content

Commit 53a1f9e

Browse files
authored
Merge pull request #64 from beman-project/add-basic-documentation
started to add Doxygen documentation
2 parents e1f37e9 + c1f018c commit 53a1f9e

32 files changed

+2936
-51
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Doxygen GitHub Pages Deploy Action
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: DenverCoder1/[email protected]
15+
with:
16+
github_token: ${{ secrets.GITHUB_TOKEN }}
17+
branch: gh-pages
18+
folder: docs/html

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
*.app
3333

3434
build
35-
mkerr
36-
olderr
3735
.DS_store
3836
.vs
3937
.vscode
4038
stagedir
39+
docs/html
40+
docs/latex

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
SANITIZERS = release debug msan asan usan tsan
5-
.PHONY: default run update check ce todo distclean clean build test all format $(SANITIZERS)
5+
.PHONY: default doc run update check ce todo distclean clean build test all format $(SANITIZERS)
66

77
COMPILER=system
88
CXX_BASE=$(CXX:$(dir $(CXX))%=%)
@@ -51,6 +51,9 @@ all: $(SANITIZERS)
5151
run: test
5252
./$(BUILD)/examples/$(EXAMPLE)
5353

54+
doc:
55+
doxygen docs/Doxyfile
56+
5457
release: test
5558

5659
$(SANITIZERS):

0 commit comments

Comments
 (0)