forked from bartvdbraak/blender
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] )
|