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: febb6364a0535e17947247d024c184d17cded87c (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python
Import ('user_options_dict')
Import ('library_env')

memutil_env = library_env.Copy ()

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

memutil_env.Append (CPPPATH = ['.','../memutil'])

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