mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
cee98aadb1
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
14 lines
183 B
Bash
Executable File
14 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SRC_PATH="${1}"
|
|
DOXYFILE="${2}"
|
|
DOXYGEN="${3}"
|
|
|
|
shift 3
|
|
|
|
$DOXYGEN - <<EOF
|
|
@INCLUDE = ${DOXYFILE}
|
|
INPUT = $@
|
|
EXAMPLE_PATH = ${SRC_PATH}/doc/examples
|
|
EOF
|