Makes text editors identify SConscripts as Python, and syntax highlight properly.
		
			
				
	
	
		
			9 lines
		
	
	
		
			240 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			240 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/python
 | 
						|
Import ('user_options_dict')
 | 
						|
 | 
						|
SConscript(['blender/SConscript',
 | 
						|
            'kernel/SConscript',
 | 
						|
            'creator/SConscript'])
 | 
						|
if user_options_dict['BUILD_GAMEENGINE'] == 1:
 | 
						|
    SConscript (['gameengine/SConscript'])
 |