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

18 lines
435 B
Python
Raw Normal View History

#!/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)