mirror of
https://github.com/jellyfin/jellyfin-ffmpeg.git
synced 2026-09-03 05:09:58 +03:00
13 lines
167 B
Bash
Executable File
13 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SRC_PATH="${1}"
|
|
DOXYFILE="${2}"
|
|
|
|
shift 2
|
|
|
|
doxygen - <<EOF
|
|
@INCLUDE = ${DOXYFILE}
|
|
INPUT = $@
|
|
EXAMPLE_PATH = ${SRC_PATH}/doc/examples
|
|
EOF
|