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 'intern/memutil/CMakeLists.txt')
-rw-r--r--intern/memutil/CMakeLists.txt22
1 files changed, 18 insertions, 4 deletions
diff --git a/intern/memutil/CMakeLists.txt b/intern/memutil/CMakeLists.txt
index 3dc725acb50..aecd3d5b6c9 100644
--- a/intern/memutil/CMakeLists.txt
+++ b/intern/memutil/CMakeLists.txt
@@ -24,9 +24,23 @@
#
# ***** END GPL LICENSE BLOCK *****
-SET(INC . ..)
+set(INC
+ .
+ ..
+)
-FILE(GLOB SRC intern/*.cpp)
+set(SRC
+ intern/MEM_CacheLimiterC-Api.cpp
+ intern/MEM_RefCountedC-Api.cpp
-BLENDERLIB(bf_intern_memutil "${SRC}" "${INC}")
-#, libtype=['intern', 'player'], priority = [0, 180] )
+ MEM_Allocator.h
+ MEM_CacheLimiter.h
+ MEM_CacheLimiterC-Api.h
+ MEM_NonCopyable.h
+ MEM_RefCountPtr.h
+ MEM_RefCounted.h
+ MEM_RefCountedC-Api.h
+ MEM_SmartPtr.h
+)
+
+blender_add_lib(bf_intern_memutil "${SRC}" "${INC}")