Skip to content

Commit ab80bc9

Browse files
Deployed 823b1b5 with MkDocs version: 1.6.1
0 parents  commit ab80bc9

845 files changed

Lines changed: 65143 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.nojekyll

Whitespace-only changes.

404.html

Lines changed: 672 additions & 0 deletions
Large diffs are not rendered by default.

Doxyfile

Lines changed: 2579 additions & 0 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.PHONY: help
2+
help:
3+
@echo "make cpp|all"
4+
5+
.PHONY: cpp
6+
cpp:
7+
@echo "Building C++ documentation..."
8+
doxygen Doxyfile doc_cpp
9+
10+
.PHONY: mkdocs
11+
mkdocs:
12+
@echo "Building MkDocs documentation..."
13+
cd .. && mkdocs build
14+
15+
.PHONY: all
16+
all: cpp mkdocs
17+
@echo "All documentation built."
18+
19+
.PHONY: deploy
20+
deploy:
21+
@echo "Deploying documentation..."
22+
cd .. && mkdocs gh-deploy --force

0 commit comments

Comments
 (0)