forked from bartvdbraak/blender
4e2143f639
Patch provied by gsrb3d bug tracker #7061 Kent
13 lines
407 B
Python
13 lines
407 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('*.cpp')
|
|
|
|
incs = '. #source/kernel/gen_system #intern/string #source/gameengine/Ketsji'
|
|
incs += ' #source/gameengine/GameLogic #source/gameengine/Expressions'
|
|
incs += ' #source/gameengine/Network'
|
|
|
|
incs += ' ' + env['BF_PYTHON_INC']
|
|
|
|
env.BlenderLib ( 'kx_network', Split(sources), Split(incs), defines=[],libtype=['game2', 'player'], priority=[5, 155] )
|