blender/source/blenderplayer/bad_level_call_stubs/SConscript
Nathan Letwory 9216efcba2 == SCons ==
* 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.
2009-09-05 01:58:02 +00:00

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] )