Makes text editors identify SConscripts as Python, and syntax highlight properly.
19 lines
625 B
Python
19 lines
625 B
Python
#!/usr/bin/python
|
|
Import ('user_options_dict')
|
|
Import ('library_env')
|
|
|
|
yafray_env = library_env.Copy ()
|
|
|
|
source_files = ['intern/yafray_Render.cpp',
|
|
'intern/export_File.cpp',
|
|
'intern/api.cpp']
|
|
|
|
yafray_env.Append (CPPPATH = ['#/intern/guardedalloc',
|
|
'../blenlib',
|
|
'../makesdna',
|
|
'../blenkernel',
|
|
'../imbuf',
|
|
'../render/extern/include'])
|
|
|
|
yafray_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_yafray', source=source_files)
|