Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « ikplugin « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4cff3399fdce7192ffb039078a7c87a64e15f354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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/Eigen3'

defs.append('WITH_IK_ITASC')

if env['PLATFORM'] == 'win32':
    defs.append('EIGEN_DONT_ALIGN_STATICALLY')

env.BlenderLib ( 'bf_ikplugin', sources, Split(incs), defs, libtype=['core','player'], priority=[180, 190] )