forked from bartvdbraak/blender
e2d577de9e
Ton reviewed and gave his blessing. Zr, can you have a look ? see : http://projects.blender.org/tracker/?func=detail&atid=127&aid=3039&group_id=9 for initial comments. N_T : the solver itself (elbeem) needs some works to get rid of warnings
21 lines
543 B
Python
21 lines
543 B
Python
#!/usr/bin/python
|
|
SConscript(['SoundSystem/SConscript',
|
|
'string/SConscript',
|
|
'ghost/SConscript',
|
|
'guardedalloc/SConscript',
|
|
'bmfont/SConscript',
|
|
'moto/SConscript',
|
|
'container/SConscript',
|
|
'memutil/SConscript/',
|
|
'decimation/SConscript',
|
|
'iksolver/SConscript',
|
|
'elbeem/SConscript',
|
|
'opennl/SConscript'])
|
|
|
|
NEW_CSG='false'
|
|
|
|
if NEW_CSG=='false':
|
|
SConscript(['bsp/SConscript'])
|
|
else:
|
|
SConscript(['csg/SConscript'])
|