2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2006-08-22 11:18:00 +00:00
|
|
|
Import ('env')
|
|
|
|
|
2009-08-09 21:16:39 +00:00
|
|
|
SConscript(['audaspace/SConscript',
|
2004-01-04 21:11:59 +00:00
|
|
|
'string/SConscript',
|
|
|
|
'ghost/SConscript',
|
|
|
|
'guardedalloc/SConscript',
|
|
|
|
'moto/SConscript',
|
|
|
|
'container/SConscript',
|
|
|
|
'memutil/SConscript/',
|
|
|
|
'decimation/SConscript',
|
2004-07-13 11:42:13 +00:00
|
|
|
'iksolver/SConscript',
|
2009-09-24 21:22:24 +00:00
|
|
|
'itasc/SConscript',
|
2005-10-29 13:26:31 +00:00
|
|
|
'boolop/SConscript',
|
2009-07-30 15:00:26 +00:00
|
|
|
'opennl/SConscript',
|
2011-02-15 09:24:35 +00:00
|
|
|
'mikktspace/SConscript',
|
2009-07-30 15:00:26 +00:00
|
|
|
'smoke/SConscript'])
|
2004-03-09 18:21:28 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
# NEW_CSG was intended for intern/csg, but
|
|
|
|
# getting it to compile is difficult
|
|
|
|
# intern/bsp has been used anyway, so
|
|
|
|
# perhaps get rid of intern/csg?
|
2004-03-09 18:21:28 +00:00
|
|
|
NEW_CSG='false'
|
|
|
|
|
2011-10-29 23:56:07 +00:00
|
|
|
if env['WITH_BF_FLUID']:
|
2006-10-18 05:45:47 +00:00
|
|
|
SConscript(['elbeem/SConscript'])
|
2006-08-22 11:18:00 +00:00
|
|
|
|
2004-03-09 18:21:28 +00:00
|
|
|
if NEW_CSG=='false':
|
2006-10-18 05:45:47 +00:00
|
|
|
SConscript(['bsp/SConscript'])
|
2004-03-09 18:21:28 +00:00
|
|
|
else:
|
2006-10-18 05:45:47 +00:00
|
|
|
SConscript(['csg/SConscript'])
|