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/binreloc/CMakeLists.txt')
-rw-r--r--extern/binreloc/CMakeLists.txt18
1 files changed, 13 insertions, 5 deletions
diff --git a/extern/binreloc/CMakeLists.txt b/extern/binreloc/CMakeLists.txt
index 7bdc93fc978..e3f0b05d563 100644
--- a/extern/binreloc/CMakeLists.txt
+++ b/extern/binreloc/CMakeLists.txt
@@ -18,9 +18,17 @@
# All rights reserved.
#
-SET(INC ./include )
-ADD_DEFINITIONS(-DENABLE_BINRELOC)
-FILE(GLOB SRC *.c)
+set(SRC
+ binreloc.c
-BLENDERLIB(extern_binreloc "${SRC}" "${INC}")
-#, libtype=['core','player'], priority = [25,15] )
+ include/binreloc.h
+)
+
+set(INC
+ ./include
+)
+
+add_definitions(-DENABLE_BINRELOC)
+
+
+blender_add_lib(extern_binreloc "${SRC}" "${INC}")