* tweak other SConscripts for editors/include * commented BKE_bad_level_calls.h in writeframeserver.c - please check it doesn't break make builds This compiles until final linking, which still fails.
33 lines
906 B
Python
33 lines
906 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',
|
|
'makesdna/SConscript',
|
|
'radiosity/SConscript',
|
|
'readblenfile/SConscript',
|
|
'render/SConscript',
|
|
'nodes/SConscript',
|
|
'windowmanager/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'])
|