mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
12 lines
336 B
Bash
Executable File
12 lines
336 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -euv
|
|
|
|
root_path=$(cd "$(dirname "${0}")/.." && pwd)
|
|
cd "${root_path}"
|
|
|
|
mkdir -p @builddir@/html
|
|
|
|
(cat Doxyfile; echo PROJECT_NUMBER=@PACKAGE_VERSION@) | doxygen - > @builddir@/html/doxygen.log 2> @builddir@/html/doxygen-error.log
|
|
echo "$(grep -c ': warning:' @builddir@/html/doxygen-error.log)" warnings/errors detected.
|