forked from bartvdbraak/blender
12 lines
275 B
Python
12 lines
275 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('*.cpp')
|
|
sources += env.Glob('kdl/*.cpp')
|
|
sources += env.Glob('kdl/utilities/*.cpp')
|
|
|
|
incs = '. ../../extern/Eigen2'
|
|
|
|
env.BlenderLib ('bf_ITASC', sources, Split(incs), [], libtype=['intern','player'], priority=[20,100] )
|
|
|