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.
11 lines
444 B
Python
11 lines
444 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = 'gen_messaging/intern/messaging.c gen_system/GEN_HashedPtr.cpp'
|
|
sources += ' gen_system/GEN_Matrix4x4.cpp gen_system/SYS_SingletonSystem.cpp'
|
|
sources += ' gen_system/SYS_System.cpp'
|
|
|
|
incs = 'gen_messaging gen_system #/intern/string #/intern/moto/include #/source/blender/blenloader '
|
|
|
|
env.BlenderLib ( 'bf_kernel', Split(sources), Split(incs), [], libtype = ['core','player'], priority = [400,100] )
|