2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2006-02-04 14:15:10 +00:00
|
|
|
Import ('env')
|
2006-08-22 13:04:07 +00:00
|
|
|
import sys
|
2004-01-04 21:11:59 +00:00
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
SConscript(['avi/SConscript',
|
|
|
|
|
'blenkernel/SConscript',
|
|
|
|
|
'blenlib/SConscript',
|
|
|
|
|
'blenloader/SConscript',
|
|
|
|
|
'blenpluginapi/SConscript',
|
2004-01-04 21:11:59 +00:00
|
|
|
'imbuf/SConscript',
|
2006-03-12 15:23:56 +00:00
|
|
|
'imbuf/intern/cineon/SConscript',
|
2004-01-04 21:11:59 +00:00
|
|
|
'makesdna/SConscript',
|
2004-02-15 19:25:32 +00:00
|
|
|
'python/SConscript',
|
|
|
|
|
'radiosity/SConscript',
|
|
|
|
|
'readblenfile/SConscript',
|
|
|
|
|
'render/SConscript',
|
2007-03-24 18:41:54 +00:00
|
|
|
'src/SConscript',
|
|
|
|
|
'nodes/SConscript'])
|
2006-10-18 05:45:47 +00:00
|
|
|
|
|
|
|
|
if env['WITH_BF_YAFRAY'] == 1:
|
|
|
|
|
SConscript(['yafray/SConscript'])
|
2004-01-04 21:11:59 +00:00
|
|
|
|
2006-02-05 12:24:52 +00:00
|
|
|
if env['WITH_BF_INTERNATIONAL'] == 1:
|
2004-01-04 21:11:59 +00:00
|
|
|
SConscript (['ftfont/SConscript'])
|
|
|
|
|
|
2007-06-25 19:50:25 +00:00
|
|
|
if env['WITH_BF_DDS'] == 1:
|
|
|
|
|
SConscript (['imbuf/intern/dds/SConscript'])
|
|
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
if env['WITH_BF_OPENEXR'] == 1:
|
|
|
|
|
SConscript (['imbuf/intern/openexr/SConscript'])
|
|
|
|
|
|
|
|
|
|
if env['WITH_BF_QUICKTIME'] == 1:
|
2004-01-04 21:11:59 +00:00
|
|
|
SConscript (['quicktime/SConscript'])
|