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/yafray/SConscript

23 lines
813 B
Python
Raw Normal View History

#!/usr/bin/python
Import ('user_options_dict')
Import ('library_env')
yafray_env = library_env.Copy ()
2004-01-08 23:57:57 +00:00
source_files = ['intern/yafray_Render.cpp',
'intern/export_File.cpp',
'intern/export_Plugin.cpp',
'intern/yafexternal.cpp',
2004-01-08 23:57:57 +00:00
'intern/api.cpp']
yafray_env.Append (CPPPATH = ['#/intern/guardedalloc',
'../blenlib',
'../makesdna',
'../blenkernel',
'../imbuf',
'../include',
'../render/extern/include',
'../render/intern/include'])
yafray_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_yafray', source=source_files)