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

SConscript « makesrna « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94ea9ad764a8091ddf4fc837f3bbbcb8b02a2f14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python
Import ('env')

objs = []

o = SConscript('intern/SConscript')
objs += o

incs = '#/intern/guardedalloc ../blenkernel ../blenlib ../makesdna intern .'
incs += ' ../windowmanager ../editors'

env.BlenderLib ( 'bf_rna', objs, Split(incs), [], libtype=['core'], priority = [195] )