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

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

Import ('env')

sources = env.Glob('*.c')
defs = []

incs = '../include ../../blenfont ../../blenkernel ../../blenlib ../../blenloader ../../bmesh'
incs += '../../makesdna ../../makesrna ../../windowmanager ../../collada'

if env['WITH_BF_COLLADA']:
    defs += ['WITH_COLLADA']

env.BlenderLib ( 'bf_editor_io', sources, Split(incs), defines=defs, libtype=['core','player'], priority=[330,210] )