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

SConscript « container « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d916e7e221c07c47a980720892203a7af074524e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cont_env = Environment()

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

source_files = ['intern/CTR_List.cpp']

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

cont_env.Library (target='#/lib/blender_CTR', source=source_files)