forked from bartvdbraak/blender
9216efcba2
* bring back 'player' libtype, after investigation with ideasman. scons/mingw works nicely, for some reason msvc fails to link still, will look further into it.
9 lines
198 B
Python
9 lines
198 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 = [5,150] )
|