mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 12:36:41 +08:00 
			
		
		
		
	 753930bc73
			
		
	
	753930bc73
	
	
	
		
			
			Previously it included the SRC_PATH in every title. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			305 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			305 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| OUT_DIR="${1}"
 | |
| DOXYFILE="${2}"
 | |
| DOXYGEN="${3}"
 | |
| 
 | |
| shift 3
 | |
| 
 | |
| if [ -e "VERSION" ]; then
 | |
|     VERSION=`cat "VERSION"`
 | |
| else
 | |
|     VERSION=`git describe`
 | |
| fi
 | |
| 
 | |
| $DOXYGEN - <<EOF
 | |
| @INCLUDE        = ${DOXYFILE}
 | |
| INPUT           = $@
 | |
| HTML_TIMESTAMP  = NO
 | |
| PROJECT_NUMBER  = $VERSION
 | |
| OUTPUT_DIRECTORY = $OUT_DIR
 | |
| EOF
 |