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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/moto/SConscript')
-rw-r--r--intern/moto/SConscript25
1 files changed, 25 insertions, 0 deletions
diff --git a/intern/moto/SConscript b/intern/moto/SConscript
new file mode 100644
index 00000000000..ec4f07e4746
--- /dev/null
+++ b/intern/moto/SConscript
@@ -0,0 +1,25 @@
+moto_env = Environment()
+
+# Import the C flags set in the SConstruct file
+Import ('cflags')
+Import ('cxxflags')
+Import ('defines')
+moto_env.Append (CCFLAGS = cflags)
+moto_env.Append (CXXFLAGS = cxxflags)
+moto_env.Append (CPPDEFINES = defines)
+
+source_files = ['intern/MT_CmMatrix4x4.cpp',
+ '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'])
+
+moto_env.Library (target='#/lib/blender_MT', source=source_files)