forked from bartvdbraak/blender
9e7643aa7c
- remove Verse support. This will be brought back in The Future (probably jiri + me) This means 5k lines less in blenkernel. - fix two small errors for global cleanup, now compiles properly with FFMPEG enabled too.
34 lines
867 B
Python
34 lines
867 B
Python
#!/usr/bin/python
|
|
|
|
Import('env')
|
|
|
|
SConscript(['glew/SConscript'])
|
|
|
|
if env['WITH_BF_GAMEENGINE']:
|
|
SConscript(['qhull/SConscript',
|
|
'solid/SConscript'])
|
|
|
|
if env['WITH_BF_BULLET']:
|
|
SConscript(['bullet2/src/SConscript'])
|
|
|
|
if env['WITH_BF_INTERNATIONAL']:
|
|
SConscript(['bFTGL/SConscript'])
|
|
|
|
if env['WITH_BF_FFMPEG'] and env['BF_FFMPEG_LIB'] == '':
|
|
SConscript(['x264/SConscript'])
|
|
SConscript(['libmp3lame/SConscript'])
|
|
SConscript(['xvidcore/SConscript'])
|
|
SConscript(['ffmpeg/SConscript'])
|
|
|
|
if env['WITH_BF_OPENJPEG'] and env['BF_OPENJPEG_LIB'] == '':
|
|
SConscript(['libopenjpeg/SConscript'])
|
|
|
|
if env['WITH_BF_REDCODE'] and env['BF_REDCODE_LIB'] == '':
|
|
SConscript(['libredcode/SConscript'])
|
|
|
|
if env['OURPLATFORM'] == 'linux2':
|
|
SConscript(['binreloc/SConscript']);
|
|
|
|
# FFTW not needed atm - dg
|
|
# SConscript(['fftw/SConscript'])
|