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

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

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

source_files = ['intern/pluginapi.c']

blenplugin_env.Append (CPPPATH = ['.',
                                  '..',
                                  '#/intern/guardedalloc',
                                  '../blenlib',
                                  '../imbuf',
                                  '../makesdna'])

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