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')
-rw-r--r--intern/moto/CMakeLists.txt19
1 files changed, 17 insertions, 2 deletions
diff --git a/intern/moto/CMakeLists.txt b/intern/moto/CMakeLists.txt
index 91c523eced9..f3300ec562b 100644
--- a/intern/moto/CMakeLists.txt
+++ b/intern/moto/CMakeLists.txt
@@ -24,8 +24,23 @@
#
# ***** END GPL LICENSE BLOCK *****
-SET(INC include)
+SET(INC
+ include
+)
-FILE(GLOB SRC intern/*.cpp)
+SET(SRC
+ intern/MT_Assert.cpp
+ 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
+)
BLENDERLIB(bf_intern_moto "${SRC}" "${INC}")