38 lines
		
	
	
		
			979 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			979 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/python
 | 
						|
Import ('env')
 | 
						|
 | 
						|
SConscript(['audaspace/SConscript',
 | 
						|
            'string/SConscript',
 | 
						|
            'ghost/SConscript',
 | 
						|
            'guardedalloc/SConscript',
 | 
						|
            'moto/SConscript',
 | 
						|
            'container/SConscript',
 | 
						|
            'memutil/SConscript/',
 | 
						|
            'decimation/SConscript',
 | 
						|
            'iksolver/SConscript',
 | 
						|
            'itasc/SConscript',
 | 
						|
            'boolop/SConscript',
 | 
						|
            'opennl/SConscript',
 | 
						|
            'mikktspace/SConscript',
 | 
						|
            'smoke/SConscript'])
 | 
						|
 | 
						|
# NEW_CSG was intended for intern/csg, but
 | 
						|
# getting it to compile is difficult
 | 
						|
# intern/bsp has been used anyway, so
 | 
						|
# perhaps get rid of intern/csg?
 | 
						|
NEW_CSG='false'
 | 
						|
 | 
						|
if env ['WITH_BF_REMESH']:
 | 
						|
	SConscript(['dualcon/SConscript'])
 | 
						|
 | 
						|
if env['WITH_BF_FLUID']:
 | 
						|
    SConscript(['elbeem/SConscript'])
 | 
						|
    
 | 
						|
if env['WITH_BF_CYCLES']:
 | 
						|
    SConscript(['cycles/SConscript'])
 | 
						|
 | 
						|
if NEW_CSG=='false':
 | 
						|
    SConscript(['bsp/SConscript'])
 | 
						|
else:
 | 
						|
    SConscript(['csg/SConscript'])
 |