forked from bartvdbraak/blender
20 lines
525 B
Python
20 lines
525 B
Python
#!/usr/bin/python
|
|
|
|
Import('env')
|
|
|
|
defs = []
|
|
|
|
sources = ['intern/mallocn.c', 'intern/mmap_win.c']
|
|
|
|
if env['WITH_BF_CXX_GUARDEDALLOC']:
|
|
sources.append('cpp/mallocn.cpp')
|
|
defs.append('WITH_CXX_GUARDEDALLOC')
|
|
|
|
incs = '.'
|
|
|
|
<<<<<<< .working
|
|
env.BlenderLib ('bf_intern_guardedalloc', sources, Split(incs), defines=[], libtype=['intern','player'], priority = [5,150] )
|
|
=======
|
|
env.BlenderLib ('bf_intern_guardedalloc', sources, Split(incs), defs, libtype=['intern','player'], priority = [5,150] )
|
|
>>>>>>> .merge-right.r35190
|