2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2004-02-15 19:25:32 +00:00
|
|
|
Import ('user_options_dict')
|
2004-02-29 21:40:48 +00:00
|
|
|
Import ('library_env')
|
|
|
|
|
|
|
|
|
|
yafray_env = library_env.Copy ()
|
2004-01-05 15:33:32 +00:00
|
|
|
|
2004-01-08 23:57:57 +00:00
|
|
|
source_files = ['intern/yafray_Render.cpp',
|
|
|
|
|
'intern/export_File.cpp',
|
2004-06-16 18:44:12 +00:00
|
|
|
'intern/export_Plugin.cpp',
|
|
|
|
|
'intern/yafexternal.cpp',
|
2004-01-08 23:57:57 +00:00
|
|
|
'intern/api.cpp']
|
2004-01-05 15:33:32 +00:00
|
|
|
|
|
|
|
|
yafray_env.Append (CPPPATH = ['#/intern/guardedalloc',
|
|
|
|
|
'../blenlib',
|
|
|
|
|
'../makesdna',
|
|
|
|
|
'../blenkernel',
|
|
|
|
|
'../imbuf',
|
2004-06-16 18:44:12 +00:00
|
|
|
'../include',
|
|
|
|
|
'../render/extern/include',
|
|
|
|
|
'../render/intern/include'])
|
2004-01-05 15:33:32 +00:00
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
yafray_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_yafray', source=source_files)
|