blender/intern/string/SConscript

18 lines
485 B
Python
Raw Normal View History

#!/usr/bin/python
Import ('env')
sources = env.Glob('intern/*.cpp')
incs = '.'
2004-01-04 21:11:59 +00:00
2011-02-27 06:19:40 +00:00
<<<<<<< .working
2010-09-07 05:47:34 +00:00
env.BlenderLib ('bf_intern_string', sources, Split(incs), [], libtype=['intern','player'], priority = [50,10] )
2011-02-27 06:19:40 +00:00
=======
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] )
2011-02-27 06:19:40 +00:00
>>>>>>> .merge-right.r35190