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
292 B
Python
9 lines
292 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = 'NG_LoopBackNetworkDeviceInterface.cpp'
|
|
|
|
incs = '. #source/kernel/gen_system #intern/string #source/gameengine/Network'
|
|
|
|
env.BlenderLib ( 'bf_loopbacknetwork', Split(sources), Split(incs), defines=[],libtype=['core','player'], priority=[400,135] )
|