
- this patch adds verse support for SCons, which can be enabled by giving WITH_BF_VERSE=1, ie. on command-line - this patch also adds a custom lib dir possibility. From the patch description: "To set a custom ../lib dir, put LCGDIR="path to lib dir, including the platform folder name!" in your user-config.py." * Fixed win32-vc-config.py so that it links to the proper library. Reported by Brandano.
29 lines
812 B
Python
29 lines
812 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',
|
|
'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'])
|