forked from bartvdbraak/blender
088899236b
Recommitted eltopo collision code (but disabled by default) with Genscher's permission. To use, you need to install liblapack and libblas
27 lines
598 B
Python
27 lines
598 B
Python
#!/usr/bin/python
|
|
|
|
Import('env')
|
|
|
|
SConscript(['glew/SConscript'])
|
|
|
|
if env['WITH_BF_ELTOPO']:
|
|
SConscript(['eltopo/SConscript'])
|
|
|
|
if env['WITH_BF_BULLET']:
|
|
SConscript(['bullet2/src/SConscript'])
|
|
|
|
if env['WITH_BF_OPENJPEG'] and env['BF_OPENJPEG_LIB'] == '':
|
|
SConscript(['libopenjpeg/SConscript'])
|
|
|
|
if env['WITH_BF_REDCODE'] and env['BF_REDCODE_LIB'] == '':
|
|
SConscript(['libredcode/SConscript'])
|
|
|
|
if env['WITH_BF_BINRELOC']:
|
|
SConscript(['binreloc/SConscript']);
|
|
|
|
if env['WITH_BF_LZO']:
|
|
SConscript(['lzo/SConscript'])
|
|
|
|
if env['WITH_BF_LZMA']:
|
|
SConscript(['lzma/SConscript'])
|