2009-09-24 21:22:24 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
Import ('env')
|
|
|
|
|
|
|
|
sources = env.Glob('*.cpp')
|
|
|
|
sources += env.Glob('kdl/*.cpp')
|
|
|
|
sources += env.Glob('kdl/utilities/*.cpp')
|
|
|
|
|
2011-10-23 17:52:20 +00:00
|
|
|
incs = '. ../../extern/Eigen3'
|
2009-09-24 21:22:24 +00:00
|
|
|
|
2011-10-23 17:52:20 +00:00
|
|
|
defs = []
|
|
|
|
|
2011-10-25 18:13:12 +00:00
|
|
|
if env['PLATFORM'] == 'win32':
|
|
|
|
defs.append('EIGEN_DONT_ALIGN_STATICALLY')
|
|
|
|
|
2011-10-23 17:52:20 +00:00
|
|
|
env.BlenderLib ('bf_intern_itasc', sources, Split(incs), defs, libtype=['intern','player'], priority=[20,100] )
|
2009-09-24 21:22:24 +00:00
|
|
|
|