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: f1ba8b3af74cbc9f0b03f4afae1bc573e0ef7a42 (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 = 'blender_blenpluginapi', sources = sources, includes = Split(incs), defines = defs, libtype='core', priority = 75 )