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

# Import the C flags set in the SConstruct file
Import ('cflags')
Import ('cxxflags')
Import ('defines')
Import ('user_options_dict')
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='#'+user_options_dict['BUILD_DIR']+'/lib/blender_CTR', source=source_files)