forked from bartvdbraak/blender
0326ec77a9
Bugfix #6168 * instead of compiling mallocn manually for makesdna, use the bf_guardedalloc lib that was already created looooooong time ago.
9 lines
201 B
Python
9 lines
201 B
Python
#!/usr/bin/python
|
|
|
|
Import('env')
|
|
|
|
sources = env.Glob('intern/*.c')
|
|
incs = '.'
|
|
|
|
env.BlenderLib ('bf_guardedalloc', sources, Split(incs), defines=[], libtype=['intern', 'player'], priority = [10, 175] )
|