58c88bcf76
Not working: a) rendering (since volumterics branch is not merged yet) b) moving collision objects of any kind c) saving of collision objects (because that's what I am working on) d) pointcache e) A bunch of other things I already know of So please do not report any bugs on this one yet :-)
16 lines
386 B
Python
16 lines
386 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
defs = ''
|
|
|
|
if env['WITH_BF_OPENMP']:
|
|
defs += ' PARALLEL=1'
|
|
|
|
incs = env['BF_PNG_INC'] + ' ' + env['BF_ZLIB_INC']
|
|
incs += ' intern ../../extern/bullet2/src ../memutil ../guardealloc '
|
|
incs += env['BF_FFTW3_INC']
|
|
|
|
env.BlenderLib ('bf_smoke', sources, Split(incs), Split(defs), libtype=['intern'], priority=[40] )
|