From 39b7bfe6bdc53c08dd5eab7058dfc3d415dfe58c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 21 Nov 2010 13:41:43 +0000 Subject: - check IF WIN32 AND NOT UNIX (for cygwin) - patch from Mike S to enable OpenMP and xcode --- intern/guardedalloc/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/guardedalloc/CMakeLists.txt') 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}") -- cgit v1.2.3