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: aa84b88932ead24c44d4fb8bc22d5fcdd4f1c62a (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 += ' GAMEBLENDER=1'

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