You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
# Run doxygen such that the working directory is the source root.
|
|
# This is needed for various reasons (e.g. relative references in md files).
|
|
# Do not use directly.
|
|
DOXYGEN="$1"
|
|
DOXYFILE="$2"
|
|
ABS_TOP_SRCDIR="$3"
|
|
cd "$ABS_TOP_SRCDIR" && exec "$DOXYGEN" "$DOXYFILE"
|