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 'source/blender/editors/mesh/CMakeLists.txt')
-rw-r--r--source/blender/editors/mesh/CMakeLists.txt24
1 files changed, 17 insertions, 7 deletions
diff --git a/source/blender/editors/mesh/CMakeLists.txt b/source/blender/editors/mesh/CMakeLists.txt
index 4145f251a64..82d1c7430fc 100644
--- a/source/blender/editors/mesh/CMakeLists.txt
+++ b/source/blender/editors/mesh/CMakeLists.txt
@@ -19,9 +19,7 @@
#
# ***** END GPL LICENSE BLOCK *****
-FILE(GLOB SRC *.c)
-
-SET(INC
+set(INC
../include
../../blenkernel
../../blenlib
@@ -33,8 +31,20 @@ SET(INC
../../../../intern/guardedalloc
)
-IF(WIN32)
- LIST(APPEND INC ${PTHREADS_INC})
-ENDIF(WIN32)
+set(SRC
+ editface.c
+ editmesh.c
+ editmesh_add.c
+ editmesh_lib.c
+ editmesh_loop.c
+ editmesh_mods.c
+ editmesh_tools.c
+ loopcut.c
+ mesh_data.c
+ mesh_ops.c
+ meshtools.c
+
+ mesh_intern.h
+)
-BLENDERLIB(bf_editor_mesh "${SRC}" "${INC}")
+blender_add_lib(bf_editor_mesh "${SRC}" "${INC}")