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

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

incs = '. #/intern/guardedalloc ../blenlib ../blenkernel'
incs += ' ../makesdna ../readblenfile ../editors/include'
incs += ' ../render/extern/include ../makesrna'

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

defs = []

env.BlenderLib ( 'bf_blenloader', sources, Split(incs), defs, libtype=['core','player'], priority = [167,30] )