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

SConscript « readstreamglue « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c96bcca9b0b63490ff3703c5874f8d08095bcfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
readstrgl_env = Environment()

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

source_files = ['intern/BLO_readStreamGlue.c',
                'intern/BLO_readStreamGlueLoopBack.c']

readstrgl_env.Append (CPPPATH = ['.',
                                 '../../kernel/gen_messaging',
                                 '../blenloader',
                                 '../inflate'])

readstrgl_env.Append (CPPPATH = extra_includes)
readstrgl_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_readstreamglue', source=source_files)