Welcome to mirror list, hosted at ThFree Co, Russian Federation.

doxy-wrapper.sh « doc - github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d88f60e55dfa4e743875ebf517d7c57be47278e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

SRC_PATH="${1}"
DOXYFILE="${2}"
DOXYGEN="${3}"

shift 3

$DOXYGEN - <<EOF
@INCLUDE        = ${DOXYFILE}
INPUT           = $@
EXAMPLE_PATH    = ${SRC_PATH}/doc/examples
EOF