forked from bartvdbraak/blender
f80089c753
Added libmp3lame to extern. (Ton that was the last one for this release, promised :) )
26 lines
633 B
Python
26 lines
633 B
Python
#!/usr/bin/python
|
|
|
|
Import('env')
|
|
|
|
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_VERSE']:
|
|
SConscript(['verse/dist/SConstruct'])
|
|
|
|
if env['WITH_BF_FFMPEG'] and env['BF_FFMPEG_LIB'] == '':
|
|
SConscript(['x264/SConscript'])
|
|
SConscript(['libmp3lame/SConscript'])
|
|
SConscript(['xvidcore/SConscript'])
|
|
SConscript(['ffmpeg/SConscript'])
|
|
|
|
if env['OURPLATFORM'] == 'linux2':
|
|
SConscript(['binreloc/SConscript']);
|