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:
authorCampbell Barton <ideasman42@gmail.com>2010-11-21 16:41:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-21 16:41:43 +0300
commit39b7bfe6bdc53c08dd5eab7058dfc3d415dfe58c (patch)
treea476f61efd8381903897eb52d7898418d477a6b3 /intern/guardedalloc/CMakeLists.txt
parent722376ed7baf73e3ab6727047130f19873113429 (diff)
- check IF WIN32 AND NOT UNIX (for cygwin)
- patch from Mike S to enable OpenMP and xcode
Diffstat (limited to 'intern/guardedalloc/CMakeLists.txt')
-rw-r--r--intern/guardedalloc/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/guardedalloc/CMakeLists.txt b/intern/guardedalloc/CMakeLists.txt
index 29e4f553974..10c16e4c98e 100644
--- a/intern/guardedalloc/CMakeLists.txt
+++ b/intern/guardedalloc/CMakeLists.txt
@@ -30,9 +30,9 @@ SET(SRC
./intern/mallocn.c
)
-IF(WIN32)
+IF(WIN32 AND NOT UNIX)
LIST(APPEND SRC ./intern/mmap_win.c)
-ENDIF(WIN32)
+ENDIF(WIN32 AND NOT UNIX)
BLENDERLIB(bf_intern_guardedalloc "${SRC}" "${INC}")