forked from bartvdbraak/blender
eb73025c63
Enable Bullet2 for Scons. This should work for all platforms, but please, test, test, test, test, test (ad infinitum)
16 lines
349 B
Python
16 lines
349 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'])
|