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')
|
|
|
|
|
|
|
|
|
|
moto_env = library_env.Copy ()
|
2004-01-04 21:11:59 +00:00
|
|
|
|
2005-01-17 11:02:44 +00:00
|
|
|
source_files = ['intern/MT_Assert.cpp',
|
|
|
|
|
'intern/MT_CmMatrix4x4.cpp',
|
2004-01-04 21:11:59 +00:00
|
|
|
'intern/MT_Matrix3x3.cpp',
|
|
|
|
|
'intern/MT_Matrix4x4.cpp',
|
|
|
|
|
'intern/MT_Plane3.cpp',
|
|
|
|
|
'intern/MT_Point3.cpp',
|
|
|
|
|
'intern/MT_Quaternion.cpp',
|
|
|
|
|
'intern/MT_Transform.cpp',
|
|
|
|
|
'intern/MT_Vector2.cpp',
|
|
|
|
|
'intern/MT_Vector3.cpp',
|
|
|
|
|
'intern/MT_Vector4.cpp',
|
|
|
|
|
'intern/MT_random.cpp']
|
|
|
|
|
|
|
|
|
|
moto_env.Append (CPPPATH = ['include'])
|
|
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
moto_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_MT', source=source_files)
|