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/guardedalloc/CMakeLists.txt')
-rw-r--r--intern/guardedalloc/CMakeLists.txt13
1 files changed, 11 insertions, 2 deletions
diff --git a/intern/guardedalloc/CMakeLists.txt b/intern/guardedalloc/CMakeLists.txt
index 10c16e4c98e..a095f050659 100644
--- a/intern/guardedalloc/CMakeLists.txt
+++ b/intern/guardedalloc/CMakeLists.txt
@@ -28,16 +28,25 @@ SET(INC .)
SET(SRC
./intern/mallocn.c
+
+ BLO_sys_types.h
+ MEM_guardedalloc.h
)
IF(WIN32 AND NOT UNIX)
- LIST(APPEND SRC ./intern/mmap_win.c)
+ LIST(APPEND SRC
+ intern/mmap_win.c
+
+ mmap_win.h
+ )
ENDIF(WIN32 AND NOT UNIX)
BLENDERLIB(bf_intern_guardedalloc "${SRC}" "${INC}")
# Override C++ alloc, optional.
IF(WITH_CXX_GUARDEDALLOC)
- SET(SRC cpp/mallocn.cpp)
+ SET(SRC
+ cpp/mallocn.cpp
+ )
BLENDERLIB(bf_intern_guardedalloc_cpp "${SRC}" "${INC}")
ENDIF(WITH_CXX_GUARDEDALLOC)