forked from bartvdbraak/blender
15da2232f7
* some lib renaming
19 lines
416 B
Python
19 lines
416 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(['ffmpeg/SConscript']);
|