- option only available to cmake, scons and make have this enabled always. - without this clang/llvm can compile blender - this was the second biggest internal lib, 192mb -> 172mb for all blenders libs (with debug flags), so gives some speedup to linking.
12 lines
402 B
Python
12 lines
402 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
defs = []
|
|
sources = env.Glob('intern/*.c') + env.Glob('intern/*.cpp')
|
|
|
|
incs = '#/intern/guardedalloc #/intern/iksolver/extern ../makesdna ../blenlib'
|
|
incs += ' ../blenkernel ../include ../ikplugin #/intern/itasc #/extern/Eigen2'
|
|
|
|
defs.append('WITH_IK_ITASC')
|
|
|
|
env.BlenderLib ( 'bf_ikplugin', sources, Split(incs), defs, libtype=['core','player'], priority=[180, 190] )
|