blender/intern/guardedalloc/SConscript

11 lines
276 B
Python
Raw Normal View History

Import ('user_options_dict')
Import ('library_env')
guardal_env = library_env.Copy ()
2004-01-04 21:11:59 +00:00
source_files = ['intern/mallocn.c']
guardal_env.Append (CPPPATH = ['.'])
guardal_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_guardedalloc', source=source_files)