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

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

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

defs = []

if env['PLATFORM'] == 'win32':
    defs.append('EIGEN_DONT_ALIGN_STATICALLY')

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