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/imbuf/intern/cineon/CMakeLists.txt')
-rw-r--r--source/blender/imbuf/intern/cineon/CMakeLists.txt18
1 files changed, 12 insertions, 6 deletions
diff --git a/source/blender/imbuf/intern/cineon/CMakeLists.txt b/source/blender/imbuf/intern/cineon/CMakeLists.txt
index 5633d2a66f6..f01de6b2620 100644
--- a/source/blender/imbuf/intern/cineon/CMakeLists.txt
+++ b/source/blender/imbuf/intern/cineon/CMakeLists.txt
@@ -24,17 +24,23 @@
#
# ***** END GPL LICENSE BLOCK *****
-FILE(GLOB SRC *.c)
-
-SET(INC
+set(INC
.
..
- ../../
- intern/include
+ ../..
../../../blenkernel
../../../blenlib
../../../makesdna
../../../../../intern/guardedalloc
)
-BLENDERLIB(bf_cineon "${SRC}" "${INC}")
+set(SRC
+ cineon_dpx.c
+ cineonlib.c
+ dpxlib.c
+ logImageCore.c
+ logImageLib.c
+ logmemfile.c
+)
+
+blender_add_lib(bf_imbuf_cineon "${SRC}" "${INC}")