diff options
author | Timothy Gu <[email protected]> | 2014-07-07 15:24:48 -0700 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2014-07-08 02:08:04 +0200 |
commit | cee98aadb12915a6103306746495b0592573d57a (patch) | |
tree | 28c66d35357575af49ed2c6d4c6b1ea48f966309 /doc/doxy-wrapper.sh | |
parent | 865a761081869c8a69c74742205916770c840ec6 (diff) |
doc: make doxygen program configurable
Signed-off-by: Timothy Gu <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
Diffstat (limited to 'doc/doxy-wrapper.sh')
-rwxr-xr-x | doc/doxy-wrapper.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/doxy-wrapper.sh b/doc/doxy-wrapper.sh index 13be8cb950..d88f60e55d 100755 --- a/doc/doxy-wrapper.sh +++ b/doc/doxy-wrapper.sh @@ -2,10 +2,11 @@ SRC_PATH="${1}" DOXYFILE="${2}" +DOXYGEN="${3}" -shift 2 +shift 3 -doxygen - <<EOF +$DOXYGEN - <<EOF @INCLUDE = ${DOXYFILE} INPUT = $@ EXAMPLE_PATH = ${SRC_PATH}/doc/examples |