forked from bartvdbraak/blender
1d366b3fe9
also a fix in BOP_Material so that MSVC won't complain about template issues
22 lines
576 B
Python
22 lines
576 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',
|
|
'boolop/SConscript',
|
|
'elbeem/SConscript',
|
|
'opennl/SConscript'])
|
|
|
|
NEW_CSG='false'
|
|
|
|
if NEW_CSG=='false':
|
|
SConscript(['bsp/SConscript'])
|
|
else:
|
|
SConscript(['csg/SConscript'])
|