2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2005-05-06 13:37:18 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
Import('env')
|
2005-05-06 13:37:18 +00:00
|
|
|
|
2006-02-24 18:55:44 +00:00
|
|
|
if env['WITH_BF_GAMEENGINE']:
|
2008-01-08 09:47:44 +00:00
|
|
|
SConscript(['qhull/SConscript',
|
|
|
|
'solid/SConscript'])
|
|
|
|
if env['WITH_BF_BULLET']:
|
|
|
|
SConscript(['bullet2/src/SConscript'])
|
2006-02-04 14:15:10 +00:00
|
|
|
|
2006-02-05 12:24:52 +00:00
|
|
|
if env['WITH_BF_INTERNATIONAL']:
|
2008-01-08 09:47:44 +00:00
|
|
|
SConscript(['bFTGL/SConscript'])
|
2006-08-22 13:04:07 +00:00
|
|
|
|
|
|
|
if env['WITH_BF_VERSE']:
|
2008-01-08 09:47:44 +00:00
|
|
|
SConscript(['verse/dist/SConstruct'])
|
2007-09-27 06:48:28 +00:00
|
|
|
|
2007-09-27 07:08:22 +00:00
|
|
|
if env['WITH_BF_FFMPEG'] and env['BF_FFMPEG_LIB'] == '':
|
2008-01-08 09:47:44 +00:00
|
|
|
SConscript(['ffmpeg/SConscript']);
|