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: 23e4faa75feeaa53939243f196de0dcff6dd18a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
guardal_env = Environment()

# Import the C flags set in the SConstruct file
Import ('cflags')
Import ('cxxflags')
Import ('defines')
guardal_env.Append (CCFLAGS = cflags)
guardal_env.Append (CXXFLAGS = cxxflags)
guardal_env.Append (CPPDEFINES = defines)

source_files = ['intern/mallocn.c']

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

guardal_env.Library (target='#/lib/blender_guardedalloc', source=source_files)