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.

14 lines
183B

  1. #!/bin/sh
  2. SRC_PATH="${1}"
  3. DOXYFILE="${2}"
  4. DOXYGEN="${3}"
  5. shift 3
  6. $DOXYGEN - <<EOF
  7. @INCLUDE = ${DOXYFILE}
  8. INPUT = $@
  9. EXAMPLE_PATH = ${SRC_PATH}/doc/examples
  10. EOF