forked from qt-creator/qt-creator
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			153 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			153 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| me=$(dirname $0)
 | |
| t=$(mktemp -t c++)
 | |
| echo "Generating $t"
 | |
| ${CPP-gcc} -xc++ -E -include $me/conf.c++ $* > $t
 | |
| echo "Parsing $t"
 | |
| $me/cplusplus0 $t
 |