forked from bartvdbraak/blender
10 lines
221 B
Python
10 lines
221 B
Python
|
#!/usr/bin/python
|
||
|
Import ('env')
|
||
|
|
||
|
sources = env.Glob('intern/*.cpp')
|
||
|
|
||
|
incs = '. ../../extern/Eigen3'
|
||
|
defs = ''
|
||
|
|
||
|
env.BlenderLib ('bf_intern_dualcon', sources, Split(incs), Split(defs), libtype=['intern'], priority=[100] )
|