mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
753930bc73
Previously it included the SRC_PATH in every title. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
22 lines
305 B
Bash
Executable File
22 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
|
|
OUT_DIR="${1}"
|
|
DOXYFILE="${2}"
|
|
DOXYGEN="${3}"
|
|
|
|
shift 3
|
|
|
|
if [ -e "VERSION" ]; then
|
|
VERSION=`cat "VERSION"`
|
|
else
|
|
VERSION=`git describe`
|
|
fi
|
|
|
|
$DOXYGEN - <<EOF
|
|
@INCLUDE = ${DOXYFILE}
|
|
INPUT = $@
|
|
HTML_TIMESTAMP = NO
|
|
PROJECT_NUMBER = $VERSION
|
|
OUTPUT_DIRECTORY = $OUT_DIR
|
|
EOF
|