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

SConscript « quicktime « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07c22398fef3d69fc267cfb65ef4a08522c2bf9d (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
26
27
28
quicktime_env = Environment ()

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

source_files = ['apple/quicktime_import.c',
                'apple/quicktime_export.c']

quicktime_env.Append (CPPPATH = ['.',
                                 '../makesdna',
                                 '#/intern/guardedalloc',
                                 '../blenlib',
                                 '../blenkernel',
                                 '../avi',
                                 '../imbuf',
                                 '../imbuf/intern',
                                 '../readstreamglue',
                                 '../render/extern/include'])

quicktime_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_quicktime', source=source_files)