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

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

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

source_files = ['intern/avi.c',
                'intern/avirgb.c',
                'intern/codecs.c',
                'intern/endian.c',
                'intern/mjpeg.c',
                'intern/options.c',
                'intern/rgb32.c']

avi_env.Append (CPPPATH = ['.',
                           '#/intern/guardedalloc'])

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