Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « guardedalloc « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fdcafb573d6990a3b782a957f785a53c84b07ad (plain)
1
2
3
4
5
6
7
8
9
10
Import ('user_options_dict')
Import ('library_env')

guardal_env = library_env.Copy ()

source_files = ['intern/mallocn.c']

guardal_env.Append (CPPPATH = ['.'])

guardal_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_guardedalloc', source=source_files)