#!/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=['intern','player'], priority=[10, 185])
