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/space_userpref/CMakeLists.txt')
-rw-r--r--source/blender/editors/space_userpref/CMakeLists.txt13
1 files changed, 9 insertions, 4 deletions
diff --git a/source/blender/editors/space_userpref/CMakeLists.txt b/source/blender/editors/space_userpref/CMakeLists.txt
index d57661bb166..1ea1806fb95 100644
--- a/source/blender/editors/space_userpref/CMakeLists.txt
+++ b/source/blender/editors/space_userpref/CMakeLists.txt
@@ -19,9 +19,7 @@
#
# ***** END GPL LICENSE BLOCK *****
-FILE(GLOB SRC *.c)
-
-SET(INC
+set(INC
../include
../../blenkernel
../../blenlib
@@ -31,4 +29,11 @@ SET(INC
../../../../intern/guardedalloc
)
-BLENDERLIB(bf_editor_space_userpref "${SRC}" "${INC}")
+set(SRC
+ space_userpref.c
+ userpref_ops.c
+
+ userpref_intern.h
+)
+
+blender_add_lib(bf_editor_space_userpref "${SRC}" "${INC}")