add back ghost/guardedalloc from trunk

This commit is contained in:
2011-05-11 20:37:11 +00:00
parent ee7b7a500a
commit b2d752d020
110 changed files with 30924 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/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 = '.'
env.BlenderLib ('bf_intern_guardedalloc', sources, Split(incs), defs, libtype=['intern','player'], priority = [5,150] )