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/cycles/util/CMakeLists.txt')
-rw-r--r--intern/cycles/util/CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/intern/cycles/util/CMakeLists.txt b/intern/cycles/util/CMakeLists.txt
index 1961ee8addc..bfe46ce6f67 100644
--- a/intern/cycles/util/CMakeLists.txt
+++ b/intern/cycles/util/CMakeLists.txt
@@ -9,6 +9,7 @@ set(INC_SYS
)
set(SRC
+ util_aligned_malloc.cpp
util_cache.cpp
util_logging.cpp
util_md5.cpp
@@ -33,6 +34,7 @@ endif()
set(SRC_HEADERS
util_algorithm.h
+ util_aligned_malloc.h
util_args.h
util_atomic.h
util_boundbox.h
@@ -72,6 +74,11 @@ set(SRC_HEADERS
util_xml.h
)
+if(WITH_CYCLES_DEBUG)
+ list(APPEND SRC util_guarded_allocator.cpp)
+ list(APPEND SRC_HEADERS util_guarded_allocator.h)
+endif()
+
include_directories(${INC})
include_directories(SYSTEM ${INC_SYS})