Files
test/source/blender/yafray/SConscript
2004-01-08 23:57:57 +00:00

23 lines
738 B
Python

yafray_env = Environment()
# Import the C flags set in the SConstruct file
Import ('cflags')
Import ('cxxflags')
Import ('defines')
yafray_env.Append (CCFLAGS = cflags)
yafray_env.Append (CXXFLAGS = cxxflags)
yafray_env.Append (CPPDEFINES = defines)
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='#/lib/blender_yafray', source=source_files)