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: d17a35e933e67f93cd375418d2518307d8153da8 (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'] == 1:
	defs.append('WITH_QUICKTIME')
	incs += ' ' + env['BF_QUICKTIME_INC']

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