2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2004-02-15 19:25:32 +00:00
|
|
|
Import ('user_options_dict')
|
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',
|
|
|
|
|
'img/SConscript',
|
|
|
|
|
'makesdna/SConscript',
|
2004-02-15 19:25:32 +00:00
|
|
|
'python/SConscript',
|
|
|
|
|
'radiosity/SConscript',
|
|
|
|
|
'readblenfile/SConscript',
|
|
|
|
|
'render/SConscript',
|
2004-01-05 15:33:32 +00:00
|
|
|
'renderconverter/SConscript',
|
2004-02-15 19:25:32 +00:00
|
|
|
'src/SConscript',
|
2004-01-05 15:33:32 +00:00
|
|
|
'yafray/SConscript'])
|
2004-01-04 21:11:59 +00:00
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
if user_options_dict['USE_INTERNATIONAL'] == 1:
|
2004-01-04 21:11:59 +00:00
|
|
|
SConscript (['ftfont/SConscript'])
|
|
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
if user_options_dict['USE_QUICKTIME'] == 1:
|
2004-01-04 21:11:59 +00:00
|
|
|
SConscript (['quicktime/SConscript'])
|