2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2004-02-15 19:25:32 +00:00
|
|
|
Import ('user_options_dict')
|
2004-02-29 21:40:48 +00:00
|
|
|
Import ('library_env')
|
|
|
|
|
|
|
|
expressions_env = library_env.Copy ()
|
2004-01-20 20:28:39 +00:00
|
|
|
|
|
|
|
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',
|
2005-03-25 10:33:39 +00:00
|
|
|
'#intern/string',
|
|
|
|
'#intern/moto/include'])
|
2004-02-21 15:13:15 +00:00
|
|
|
|
|
|
|
expressions_env.Append (CPPPATH = user_options_dict['PYTHON_INCLUDE'])
|
2004-01-20 20:28:39 +00:00
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
expressions_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_expressions', source=source_files)
|