Files
test/source/blender/readblenfile/SConscript

15 lines
529 B
Python
Raw Normal View History

Import ('user_options_dict')
Import ('library_env')
readblenfile_env = library_env.Copy ()
2004-01-04 21:11:59 +00:00
source_files = ['intern/BLO_readblenfile.c']
readblenfile_env.Append (CPPPATH = ['.',
'../readstreamglue',
'../blenloader',
'../blenkernel',
'../../kernel/gen_messaging'])
readblenfile_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_readblenfile', source=source_files)