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

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

sources = 'stubs.c'

incs = '#/source/blender/makesdna'
incs += ' #/source/blender/makesrna'

defs = ''
if env['WITH_BF_INTERNATIONAL']:
    defs += 'WITH_FREETYPE2'

if env['WITH_BF_GAMEENGINE']:
	defs.append('GAMEBLENDER=1')

env.BlenderLib ('blenkernel_blc', sources = Split(sources), includes=Split(incs), defines=Split(defs), libtype=['player'],priority=[220] )