forked from bartvdbraak/blender
b4505d32dc
* WITH_BF_GAMEENGINE=0 implicitely means WITH_BF_BULLET=0 now
13 lines
276 B
Python
13 lines
276 B
Python
#!/usr/bin/python
|
|
|
|
Import('env')
|
|
|
|
if env['WITH_BF_GAMEENGINE']:
|
|
SConscript(['qhull/SConscript',
|
|
'solid/SConscript'])
|
|
if env['WITH_BF_BULLET']:
|
|
SConscript(['bullet/SConscript'])
|
|
|
|
if env['WITH_BF_INTERNATIONAL']:
|
|
SConscript(['bFTGL/SConscript'])
|