blender/intern/guardedalloc/SConscript

16 lines
346 B
Python
Raw Normal View History

#!/usr/bin/python
Import('env')
2004-01-04 21:11:59 +00:00
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 = '.'
2004-01-04 21:11:59 +00:00
env.BlenderLib ('bf_intern_guardedalloc', sources, Split(incs), defs, libtype=['intern','player'], priority = [5,150] )