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

SConscript « itasc « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fa4246d711b2aa1692db9c3d96ded64d396986b (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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_intern_itasc', sources, Split(incs), [], libtype=['intern','player'], priority=[20,100] )