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

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

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

incs = '. #/intern/guardedalloc ../blenlib ../blenkernel'
incs += ' ../makesdna ../readblenfile ../include'
incs += ' ../python ../../kernel/gen_messaging'
incs += ' ../render/extern/include'

incs += ' ' + env['BF_ZLIB_INC']

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