- cleanup of boolean usage - use True and False now instead of 'true'/'false' or 0/1 - changed SConscripts accordingly
		
			
				
	
	
		
			12 lines
		
	
	
		
			279 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			279 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/python
 | 
						|
Import ('env')
 | 
						|
 | 
						|
SConscript(['blender/SConscript',
 | 
						|
			'kernel/SConscript',
 | 
						|
			'creator/SConscript'])
 | 
						|
if env['WITH_BF_GAMEENGINE']:
 | 
						|
	SConscript (['gameengine/SConscript'])
 | 
						|
	
 | 
						|
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
 | 
						|
	SConscript (['icons/SConscript'])
 |