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.

22 lines
305B

  1. #!/bin/sh
  2. OUT_DIR="${1}"
  3. DOXYFILE="${2}"
  4. DOXYGEN="${3}"
  5. shift 3
  6. if [ -e "VERSION" ]; then
  7. VERSION=`cat "VERSION"`
  8. else
  9. VERSION=`git describe`
  10. fi
  11. $DOXYGEN - <<EOF
  12. @INCLUDE = ${DOXYFILE}
  13. INPUT = $@
  14. HTML_TIMESTAMP = NO
  15. PROJECT_NUMBER = $VERSION
  16. OUTPUT_DIRECTORY = $OUT_DIR
  17. EOF