1
0
mirror of https://github.com/slendidev/smath.git synced 2026-03-16 18:16:50 +02:00

Fix .gitignore and add build_docs.sh

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2026-03-12 08:35:40 +02:00
parent 2719e1d746
commit cf490494c3
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
[Bb]uild*
![Bb]uild*.*
.cache
result
.direnv

10
docs/build_docs.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
doxygen "${repo_root}/docs/Doxyfile"
"${repo_root}/docs/postprocess-doxygen.sh" "${repo_root}/build/docs/html"
echo "Docs generated at ${repo_root}/build/docs/html"