forked from bartvdbraak/blender
f837b46a2b
* Fluid compilation: Inverse the compile flag from DISABLE_ELBEEM to WITH_MOD_FLUID for consistency. (scons/cmake) * Use WITH_BF_FLUID in your user config (scons) * Add support for scons to disable build with Decimate and Boolean modifier. (WITH_BF_DECIMATE and WITH_BF_BOOLEAN)
32 lines
846 B
Python
32 lines
846 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
SConscript(['audaspace/SConscript',
|
|
'string/SConscript',
|
|
'ghost/SConscript',
|
|
'guardedalloc/SConscript',
|
|
'moto/SConscript',
|
|
'container/SConscript',
|
|
'memutil/SConscript/',
|
|
'decimation/SConscript',
|
|
'iksolver/SConscript',
|
|
'itasc/SConscript',
|
|
'boolop/SConscript',
|
|
'opennl/SConscript',
|
|
'mikktspace/SConscript',
|
|
'smoke/SConscript'])
|
|
|
|
# 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?
|
|
NEW_CSG='false'
|
|
|
|
if env['WITH_BF_FLUID']:
|
|
SConscript(['elbeem/SConscript'])
|
|
|
|
if NEW_CSG=='false':
|
|
SConscript(['bsp/SConscript'])
|
|
else:
|
|
SConscript(['csg/SConscript'])
|