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
206 B
Python
9 lines
206 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = 'DummyPhysicsEnvironment.cpp'
|
|
|
|
incs = '. ../common'
|
|
|
|
env.BlenderLib ( 'bf_dummy', Split(sources), Split(incs), [], libtype=['core','player'], priority=[350,60] )
|