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

sources = 'stubs.c'

incs = '#/intern/guardedalloc'
incs += ' #/source/blender/makesdna'
incs += ' #/source/blender/makesrna'
incs += ' #/source/blender/blenloader'

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

if env['WITH_BF_GAMEENGINE']:
    defs += ' WITH_GAMEENGINE'

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