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

SConscript « blenlib « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7a4f2eaf1344d6a7e9f18a2c86e82931a39d984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/python
Import ('env')

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

cflags=''
incs = '. ../makesdna ../blenkernel #/intern/guardedalloc ../include'
incs += ' ' + env['BF_FREETYPE_INC']
incs += ' ' + env['BF_ZLIB_INC']
incs += ' ' + env['BF_SDL_INC']
defs = ''

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

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

if env['OURPLATFORM'] == 'linux2':
    cflags='-pthread'
    incs += ' ../../../extern/binreloc/include'

if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
    incs += ' ' + env['BF_PTHREADS_INC']

env.BlenderLib ( 'bf_blenlib', sources, Split(incs), Split(defs), libtype=['core', 'intern', 'player'], priority = [85,150,195], compileflags =cflags )