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

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

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

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

defs = ''
if env['WITH_BF_VERSE']:
	defs += ' WITH_VERSE'
	incs += ' ' + env['BF_VERSE_INCLUDE']

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