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

SConscript « bsp « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4927c33dc8a652e059f8b98d323086d0cb215bc3 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/python
Import ('env')

sources = env.Glob('intern/*.cpp')

incs = 'intern ../container ../moto/include ../memutil ../guardedalloc'

env.BlenderLib ('bf_intern_bsp', sources, Split(incs), [], libtype=['core','player'], priority=[200,100] )