
* Add WITH_BF_YAFRAY, which per default is 'true', so no visible changes for developers (and users). Set WITH_BF_YAFRAY to 'false', and you'll save some major compile time :) Also handy if you're strapped for memory and compilation fails on yafray compilation due to this. - this commit also has a few whitespace changes and - made BF_NO_ELBEEM a proper BoolOption. This will be renamed to WITH_BF_ELBEEM in the near future...
31 lines
849 B
Python
31 lines
849 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
import sys
|
|
|
|
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'])
|
|
|
|
if env['WITH_BF_YAFRAY'] == 1:
|
|
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'])
|