mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-26 20:50:34 +00:00
3b0fb00990
Signed-off-by: cyberbox <468042667@qq.com> Change-Id: I63cc2a8c9ff6197c67d6b6b47c124882ad942a22
25 lines
335 B
Bash
Executable File
25 lines
335 B
Bash
Executable File
#!/bin/sh
|
|
|
|
OUT_DIR="${1}"
|
|
SRC_DIR="${2}"
|
|
DOXYFILE="${3}"
|
|
DOXYGEN="${4}"
|
|
|
|
shift 4
|
|
|
|
cd ${SRC_DIR}
|
|
|
|
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
|