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: c8189501d4b0ebe8827f76253096a7958d9d5684 (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'], priority = [0] )