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

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

memutil_env = library_env.Copy ()

source_files = ['intern/MEM_RefCountedC-Api.cpp']

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

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