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

SConscript « animation « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17f8d32ccf1a7c72bf50982aea0a2d7c61c1c707 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python
Import ('env')

sources = env.Glob('*.c')

incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../makesrna ../../imbuf'
<<<<<<< .working
incs += ' ../../windowmanager ../../bmesh'
incs += ' #/intern/guardedalloc #/extern/glew/include'
=======
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include ../../blenloader'
>>>>>>> .merge-right.r35190

env.BlenderLib ( 'bf_editors_animation', sources, Split(incs), [], libtype=['core'], priority=[125] )