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 'extern/lzo/CMakeLists.txt')
-rw-r--r--extern/lzo/CMakeLists.txt15
1 files changed, 10 insertions, 5 deletions
diff --git a/extern/lzo/CMakeLists.txt b/extern/lzo/CMakeLists.txt
index 8bc887c923e..17728aad43e 100644
--- a/extern/lzo/CMakeLists.txt
+++ b/extern/lzo/CMakeLists.txt
@@ -24,11 +24,16 @@
#
# ***** END GPL LICENSE BLOCK *****
-SET(INC include)
+set(INC
+ include
+)
-FILE(GLOB SRC minilzo/*.c)
+set(SRC
+ minilzo/minilzo.c
+ minilzo/lzoconf.h
+ minilzo/lzodefs.h
+ minilzo/minilzo.h
+)
-
-BLENDERLIB(extern_minilzo "${SRC}" "${INC}")
-#, libtype='blender', priority = 0 )
+blender_add_lib(extern_minilzo "${SRC}" "${INC}")