forked from bartvdbraak/blender
208da2a5d0
using bandoler's patch as a basis (thanks!). A couple of notes: - This is for windows only, I did not have a chance to try linux yet. - SConscript for PHY_Bullet may need tweaking (plus support for other platforms), but at least it's in there :) Any problems, shout :)
14 lines
287 B
Python
14 lines
287 B
Python
#!/usr/bin/python
|
|
|
|
Import('user_options_dict')
|
|
|
|
|
|
print "externs..."
|
|
SConscript(['qhull/SConscript',
|
|
'solid/SConscript',
|
|
'bullet/SConscript'])
|
|
|
|
|
|
if user_options_dict['USE_INTERNATIONAL'] == 1:
|
|
print "bftgl"
|
|
SConscript(['bFTGL/SConscript']) |