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

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

Import('env')

sources = env.Glob('*.cpp')

incs = '.'
defs = []

if env['WITH_BF_INTERNATIONAL']:
    defs.append('WITH_INTERNATIONAL')
    incs += ' ' + env['BF_BOOST_INC']

env.BlenderLib( 'bf_intern_locale', sources, Split(incs), defs, libtype=['extern','player'], priority=[10, 185])