Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
		
			
				
	
	
		
			14 lines
		
	
	
		
			183 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			183 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
SRC_PATH="${1}"
 | 
						|
DOXYFILE="${2}"
 | 
						|
DOXYGEN="${3}"
 | 
						|
 | 
						|
shift 3
 | 
						|
 | 
						|
$DOXYGEN - <<EOF
 | 
						|
@INCLUDE        = ${DOXYFILE}
 | 
						|
INPUT           = $@
 | 
						|
EXAMPLE_PATH    = ${SRC_PATH}/doc/examples
 | 
						|
EOF
 |