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

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

sources = env.Glob('intern/*.cpp')
incs = '.'

defs = []

if env['WITH_BF_CXX_GUARDEDALLOC']:
    defs.append('WITH_CXX_GUARDEDALLOC')
    incs += ' #intern/guardedalloc'

env.BlenderLib ('bf_intern_string', sources, Split(incs), defs, libtype=['intern','player'], priority = [50,10] )