Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « KXNetwork « Ketsji « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93b65757ac5b542dbc633671e857da020d010fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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=['core', 'player'], priority=[400, 145] )