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: 9311999e123cec5ff257679bc5aaede080bde6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python
Import ('extra_includes')
Import ('user_options_dict')
Import ('library_env')

avi_env = library_env.Copy ()

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=user_options_dict['JPEG_INCLUDE'])
avi_env.Append (CPPPATH=extra_includes)
avi_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_avi', source=source_files)