656ee61718
(The last time there was some files missing due to failed connection to svn server while merging.. thats why this stuff of reverting last merge and redoing it) svn merge -r 16231:16608 https://svn.blender.org/svnroot/bf-blender/trunk/blender
38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
import sys
|
|
|
|
SConscript(['avi/SConscript',
|
|
'blenkernel/SConscript',
|
|
'blenlib/SConscript',
|
|
'blenloader/SConscript',
|
|
'blenpluginapi/SConscript',
|
|
'gpu/SConscript',
|
|
'imbuf/SConscript',
|
|
'imbuf/intern/cineon/SConscript',
|
|
'makesdna/SConscript',
|
|
'python/SConscript',
|
|
'radiosity/SConscript',
|
|
'readblenfile/SConscript',
|
|
'render/SConscript',
|
|
'src/SConscript',
|
|
'nodes/SConscript'])
|
|
|
|
if env['WITH_BF_YAFRAY'] == 1:
|
|
SConscript(['yafray/SConscript'])
|
|
|
|
if env['WITH_BF_INTERNATIONAL'] == 1:
|
|
SConscript (['ftfont/SConscript'])
|
|
|
|
if env['WITH_BF_DDS'] == 1:
|
|
SConscript (['imbuf/intern/dds/SConscript'])
|
|
|
|
if env['WITH_BF_OPENEXR'] == 1:
|
|
SConscript (['imbuf/intern/openexr/SConscript'])
|
|
|
|
if env['WITH_BF_QUICKTIME'] == 1:
|
|
SConscript (['quicktime/SConscript'])
|
|
|
|
if env['WITH_BF_FREESTYLE'] == 1:
|
|
SConscript(['freestyle/SConscript'])
|