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/curve/CMakeLists.txt')
-rw-r--r--source/blender/editors/curve/CMakeLists.txt15
1 files changed, 11 insertions, 4 deletions
diff --git a/source/blender/editors/curve/CMakeLists.txt b/source/blender/editors/curve/CMakeLists.txt
index ab45d73a2de..708908eda2b 100644
--- a/source/blender/editors/curve/CMakeLists.txt
+++ b/source/blender/editors/curve/CMakeLists.txt
@@ -19,9 +19,7 @@
#
# ***** END GPL LICENSE BLOCK *****
-FILE(GLOB SRC *.c)
-
-SET(INC
+set(INC
../include
../../blenkernel
../../blenlib
@@ -31,4 +29,13 @@ SET(INC
../../../../intern/guardedalloc
)
-BLENDERLIB(bf_editor_curve "${SRC}" "${INC}")
+set(SRC
+ curve_ops.c
+ editcurve.c
+ editfont.c
+ lorem.c
+
+ curve_intern.h
+)
+
+blender_add_lib(bf_editor_curve "${SRC}" "${INC}")