forked from bartvdbraak/blender
19 lines
586 B
Python
19 lines
586 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('*.cpp')
|
|
|
|
incs = '. #source/kernel/gen_system #intern/string #intern/moto/include #source/gameengine/Ketsji'
|
|
incs += ' #source/gameengine/GameLogic #source/gameengine/Expressions'
|
|
incs += ' #source/gameengine/Network #source/gameengine/SceneGraph'
|
|
|
|
incs += ' ' + env['BF_PYTHON_INC']
|
|
|
|
cxxflags = []
|
|
if env['OURPLATFORM']=='win32-vc':
|
|
cxxflags.append ('/GR')
|
|
cxxflags.append ('/O2')
|
|
|
|
|
|
env.BlenderLib ( 'kx_network', Split(sources), Split(incs), defines=[],libtype=['game2', 'player'], priority=[5, 155], cxx_compileflags=cxxflags )
|