2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00
kea/doc/devel/make-devel.sh.in

12 lines
336 B
Bash
Raw Normal View History

2025-02-18 15:54:20 +01:00
#!/bin/sh
set -euv
2025-02-18 15:54:20 +01:00
2025-03-19 09:37:25 +02:00
root_path=$(cd "$(dirname "${0}")/.." && pwd)
cd "${root_path}"
2025-02-18 15:54:20 +01:00
mkdir -p @builddir@/html
2025-02-20 01:02:16 +01:00
(cat Doxyfile; echo PROJECT_NUMBER=@PACKAGE_VERSION@) | doxygen - > @builddir@/html/doxygen.log 2> @builddir@/html/doxygen-error.log
2025-02-18 15:54:20 +01:00
echo "$(grep -c ': warning:' @builddir@/html/doxygen-error.log)" warnings/errors detected.