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_info/CMakeLists.txt')
-rw-r--r--source/blender/editors/space_info/CMakeLists.txt19
1 files changed, 15 insertions, 4 deletions
diff --git a/source/blender/editors/space_info/CMakeLists.txt b/source/blender/editors/space_info/CMakeLists.txt
index 9d439c4ec00..262882e886f 100644
--- a/source/blender/editors/space_info/CMakeLists.txt
+++ b/source/blender/editors/space_info/CMakeLists.txt
@@ -19,10 +19,9 @@
#
# ***** END GPL LICENSE BLOCK *****
-FILE(GLOB SRC *.c)
-
-SET(INC
+set(INC
../include
+ ../../blenfont
../../blenkernel
../../blenlib
../../imbuf
@@ -32,4 +31,16 @@ SET(INC
../../../../intern/guardedalloc
)
-BLENDERLIB(bf_editor_space_info "${SRC}" "${INC}")
+set(SRC
+ info_ops.c
+ info_stats.c
+ info_draw.c
+ info_report.c
+ textview.c
+ space_info.c
+
+ info_intern.h
+ textview.h
+)
+
+blender_add_lib(bf_editor_space_info "${SRC}" "${INC}")