patch by Ben Batt (artificer) Updated patch for 6 or so modifiers added since the patch was written. - tested with CMake and SCons - fixed one error were flags were being added to the fluids type. - remove BKE_simple_deform.h, simple_deform.c, move functions into MOD_simpledeform.c since there were problems with circular deps. - moved some fluid and boolean functions used by modifiers too.
17 lines
542 B
Python
17 lines
542 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.c')
|
|
|
|
incs = '. ./intern'
|
|
incs += ' #/intern/guardedalloc #/intern/decimation/extern #/intern/bsp/extern #/intern/elbeem/extern'
|
|
incs += ' ../render/extern/include'
|
|
incs += ' ../include ../blenlib ../makesdna ../blenkernel ../blenkernel/intern'
|
|
|
|
incs += ' ' + env['BF_ZLIB_INC']
|
|
|
|
defs = ''
|
|
|
|
env.BlenderLib ( libname = 'modifiers', sources = sources,
|
|
includes = Split(incs), defines = Split(defs),
|
|
libtype=['core','player'], priority = [180, 20] ) |