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

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

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

incs = '.  ../blenloader ../blenloader/intern ../blenkernel ../blenlib ../makesdna ../../kernel/gen_messaging'

env.BlenderLib ( 'bf_readblenfile', sources, Split(incs), [], libtype=['core','player'], priority = [0,5] )