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: c1ad931c665d77f7235808b5c79b4c7b0c18acac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python
Import ('env')

sources = env.Glob('*.cpp')
sources += env.Glob('kdl/*.cpp')
sources += env.Glob('kdl/utilities/*.cpp')

incs = '. ../../extern/Eigen3'

defs = []

env.BlenderLib ('bf_intern_itasc', sources, Split(incs), defs, libtype=['intern','player'], priority=[20,100] )