28 lines
		
	
	
		
			801 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			801 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/python
 | |
| Import ('env')
 | |
| 
 | |
| SConscript(['avi/SConscript',
 | |
|             'blenkernel/SConscript',
 | |
|             'blenlib/SConscript',
 | |
|             'blenloader/SConscript',
 | |
|             'blenpluginapi/SConscript',
 | |
|             'imbuf/SConscript',
 | |
|             'imbuf/intern/cineon/SConscript',
 | |
|             'img/SConscript',
 | |
|             'makesdna/SConscript',
 | |
|             'python/SConscript',
 | |
|             'radiosity/SConscript',
 | |
|             'readblenfile/SConscript',
 | |
|             'render/SConscript',
 | |
|             'src/SConscript',
 | |
|             'yafray/SConscript'])
 | |
| 
 | |
| if env['WITH_BF_INTERNATIONAL'] == 1:
 | |
|     SConscript (['ftfont/SConscript'])
 | |
| 
 | |
| if env['WITH_BF_OPENEXR'] == 1:
 | |
|     SConscript (['imbuf/intern/openexr/SConscript'])
 | |
| 
 | |
| if env['WITH_BF_QUICKTIME'] == 1:
 | |
|     SConscript (['quicktime/SConscript'])
 | 
