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

SConscript « blenloader « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a11d60bf44b78671d4c25f29e0e44d531185993 (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
29
blenloader_env = Environment()

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

source_files = ['intern/genfile.c',
                'intern/readblenentry.c',
                'intern/readfile.c',
                'intern/writefile.c']

blenloader_env.Append (CPPPATH = ['.',
                                  '#/intern/guardedalloc',
                                  '../blenlib',
                                  '../blenkernel',
                                  '../makesdna',
                                  '../readblenfile',
                                  '../include',
                                  '../python',
                                  '../../kernel/gen_messaging',
                                  '../render/extern/include',
                                  '../writestreamglue',
                                  '../readstreamglue'])

blenloader_env.Library (target='#/lib/blender_blenloader', source=source_files)