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/renderconverter/SConscript
JLuc Peuriere c78e44cdc5 big warning hunt commit
lot of casts, added prototypes, missing includes and some true errors
2005-03-09 19:45:59 +00:00

21 lines
794 B
Python

#!/usr/bin/python
Import ('user_options_dict')
Import ('library_env')
renderconv_env = library_env.Copy ()
source_files = ['intern/convertBlenderScene.c']
renderconv_env.Append (CPPPATH = ['.',
'../blenlib',
'../yafray',
'../radiosity/extern/include',
'#/intern/guardedalloc',
'../makesdna',
'../blenkernel',
'../include',
'../render/extern/include',
'../python'])
renderconv_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_renderconverter', source=source_files)