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

SConscript « SceneGraph « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23c1c24c2977229ded69f9d6622d866ed2e0bcd1 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/python

Import ('env')

sources = env.Glob('*.cpp') #'SG_BBox.cpp SG_Controller.cpp SG_IObject.cpp SG_Node.cpp SG_Spatial.cpp SG_Tree.cpp'

incs = '. #intern/moto/include'

env.BlenderLib ( 'bf_scenegraph', sources, Split(incs), [], libtype=['game','player'], priority=[50,130] )