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

SConscript « inflate « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54d2ae487d4e579d8ed3b8f18242cfd3320cd3aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Import ('extra_includes')
Import ('user_options_dict')
Import ('library_env')

inflate_env = library_env.Copy ()

source_files = ['intern/BLO_inflate.c']

inflate_env.Append (CPPPATH = ['.',
                               '../../kernel/gen_messaging',
                               '../readstreamglue'])

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