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:
authorCampbell Barton <ideasman42@gmail.com>2010-11-29 07:35:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-29 07:35:56 +0300
commite8397e6193452f6e93a19c5aa31d5effaff54f25 (patch)
treec4adb230624abb1c92b31482605e1927e819e6d2 /intern/moto
parent4c82be95fdaa4bef2f186b12ac28f58fa9a40564 (diff)
include headers in cmake source, added a script to check for consistency, reporting missing headers & C files.
this is important so IDE's using CMake integration always get blender headers. - QtCreator & MSVC for eg, probably others too.
Diffstat (limited to 'intern/moto')
-rw-r--r--intern/moto/CMakeLists.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/intern/moto/CMakeLists.txt b/intern/moto/CMakeLists.txt
index f3300ec562b..57baa5dfbb3 100644
--- a/intern/moto/CMakeLists.txt
+++ b/intern/moto/CMakeLists.txt
@@ -41,6 +41,30 @@ SET(SRC
intern/MT_Vector3.cpp
intern/MT_Vector4.cpp
intern/MT_random.cpp
+
+ include/GEN_List.h
+ include/GEN_Map.h
+ include/MT_CmMatrix4x4.h
+ include/MT_Matrix3x3.h
+ include/MT_Matrix4x4.h
+ include/MT_MinMax.h
+ include/MT_Optimize.h
+ include/MT_Plane3.h
+ include/MT_Point2.h
+ include/MT_Point3.h
+ include/MT_Quaternion.h
+ include/MT_Scalar.h
+ include/MT_Stream.h
+ include/MT_Transform.h
+ include/MT_Tuple2.h
+ include/MT_Tuple3.h
+ include/MT_Tuple4.h
+ include/MT_Vector2.h
+ include/MT_Vector3.h
+ include/MT_Vector4.h
+ include/MT_assert.h
+ include/MT_random.h
+ include/NM_Scalar.h
)
BLENDERLIB(bf_intern_moto "${SRC}" "${INC}")