This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/imbuf/intern/openexr/SConscript

19 lines
367 B
Python
Raw Normal View History

#!/usr/bin/python
Import ('env')
source_files = ['openexr_api.cpp']
incs = ['.',
'../../../blenkernel',
'../../',
'..',
'../../../blenlib',
'intern/include',
'#/intern/guardedalloc',
'../../../makesdna']
incs += Split(env['BF_OPENEXR_INC'])
defs = []
env.BlenderLib ('bf_openexr', source_files, incs, defs, libtype=['core','player'], priority = [125, 85])