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

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

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

incs = '. intern  #/intern/guardedalloc #/intern/locale ../blenkernel ../blenlib ../blenloader'
incs += ' ../makesdna ../makesrna ../imbuf ../editors/include ../gpu'
incs += ' #/extern/glew/include'
incs += ' ' + env['BF_FREETYPE_INC']

defs = ['GLEW_STATIC']

if sys.platform == 'win32' or env['OURPLATFORM'] == 'linuxcross':
    defs.append('_WIN32')

if env['WITH_BF_INTERNATIONAL']:
    defs.append('WITH_INTERNATIONAL')

env.BlenderLib ( 'bf_blenfont', sources, Split(incs), Split(defs), libtype=['core','player'], priority=[210,210] )