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/decimation/CMakeLists.txt')
-rw-r--r--intern/decimation/CMakeLists.txt35
1 files changed, 31 insertions, 4 deletions
diff --git a/intern/decimation/CMakeLists.txt b/intern/decimation/CMakeLists.txt
index 7fdf08978a4..b726a8cd6a1 100644
--- a/intern/decimation/CMakeLists.txt
+++ b/intern/decimation/CMakeLists.txt
@@ -24,9 +24,36 @@
#
# ***** END GPL LICENSE BLOCK *****
-SET(INC . ../moto/include ../container ../memutil)
+set(INC
+ .
+ ../container
+ ../memutil
+ ../moto/include
+)
-FILE(GLOB SRC intern/*.cpp)
+set(SRC
+ intern/LOD_EdgeCollapser.cpp
+ intern/LOD_ExternNormalEditor.cpp
+ intern/LOD_FaceNormalEditor.cpp
+ intern/LOD_ManMesh2.cpp
+ intern/LOD_MeshPrimitives.cpp
+ intern/LOD_QSDecimator.cpp
+ intern/LOD_QuadricEditor.cpp
+ intern/LOD_decimation.cpp
-BLENDERLIB(bf_intern_decimate "${SRC}" "${INC}")
-#, libtype=['core','common','player'], priority = [10, 20, 25] )
+ extern/LOD_decimation.h
+ intern/LOD_DecimationClass.h
+ intern/LOD_EdgeCollapser.h
+ intern/LOD_ExternBufferEditor.h
+ intern/LOD_ExternNormalEditor.h
+ intern/LOD_FaceNormalEditor.h
+ intern/LOD_ManMesh2.h
+ intern/LOD_MeshBounds.h
+ intern/LOD_MeshException.h
+ intern/LOD_MeshPrimitives.h
+ intern/LOD_QSDecimator.h
+ intern/LOD_Quadric.h
+ intern/LOD_QuadricEditor.h
+)
+
+blender_add_lib(bf_intern_decimate "${SRC}" "${INC}")