forked from bartvdbraak/blender
18 lines
485 B
Python
18 lines
485 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
incs = '.'
|
|
|
|
<<<<<<< .working
|
|
env.BlenderLib ('bf_intern_string', sources, Split(incs), [], libtype=['intern','player'], priority = [50,10] )
|
|
=======
|
|
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] )
|
|
>>>>>>> .merge-right.r35190
|