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

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

source_files = ['openexr_api.cpp']

incs = ['.',
	'../../../blenkernel',
	'../../',
	'..',
	'../../../blenlib',
	'../../../makesdna']
incs += Split(env['BF_OPENEXR_INC'])

defs = []
                 
#openexr_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_openexr', source=source_files)
env.BlenderLib ('blender_openexr', source_files, incs, defs, libtype='core', priority = 90)