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

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

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

incs = '. .. #/intern/guardedalloc ../blenlib ../imbuf ../makesdna'

defs = []

if env['WITH_BF_QUICKTIME']:
	defs.append('WITH_QUICKTIME')
	incs += ' ' + env['BF_QUICKTIME_INC']

env.BlenderLib ( libname = 'bf_blenpluginapi', sources = sources, includes = Split(incs), defines = defs, libtype=['core'], priority = [170] )