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

SConscript « Expressions « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5d748e456c3c535c9adb01b2367957ef50f8023 (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
30
31
32
Import ('user_options_dict')
Import ('library_env')

expressions_env = library_env.Copy ()

source_files = ['BoolValue.cpp',
                'ConstExpr.cpp',
                'EmptyValue.cpp',
                'ErrorValue.cpp',
                'EXP_C-Api.cpp',
                'Expression.cpp',
                'FloatValue.cpp',
                'IdentifierExpr.cpp',
                'IfExpr.cpp',
                'InputParser.cpp',
                'IntValue.cpp',
                'KX_HashedPtr.cpp',
                'ListValue.cpp',
                'Operator1Expr.cpp',
                'Operator2Expr.cpp',
                'PyObjectPlus.cpp',
                'StringValue.cpp',
                'Value.cpp',
                'VectorValue.cpp']

expressions_env.Append (CPPPATH = ['.',
                                   '#source/kernel/gen_system',
                                   '#intern/string'])

expressions_env.Append (CPPPATH = user_options_dict['PYTHON_INCLUDE'])

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