summaryrefslogtreecommitdiffstats
path: root/build_doc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build_doc.sh')
-rwxr-xr-xbuild_doc.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/build_doc.sh b/build_doc.sh
deleted file mode 100755
index 40b1371..0000000
--- a/build_doc.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-project="$(realpath --relative-base=.. .)"
-version="$(grep -Eo '[0-9]+.[0-9]+.[0-9]+$' CMakeLists.txt)"
-
-if [[ -f Doxyfile ]]; then
- mkdir -p doc
- (doxygen -s -g - && cat Doxyfile &&
- echo "PROJECT_NAME = ${project}" &&
- echo "PROJECT_NUMBER = ${version}") | doxygen -
-fi