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.
14 lines
340 B
Python
14 lines
340 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = 'stubs.c'
|
|
|
|
incs = '#/source/blender/makesdna'
|
|
incs += ' #/source/blender/makesrna'
|
|
|
|
defs = ''
|
|
if env['WITH_BF_INTERNATIONAL']:
|
|
defs += 'WITH_FREETYPE2'
|
|
|
|
env.BlenderLib ('blenkernel_blc', sources = Split(sources), includes=Split(incs), defines=Split(defs), libtype=['player'],priority=[220] )
|