- check IF WIN32 AND NOT UNIX (for cygwin)

- patch from Mike S to enable OpenMP and xcode
This commit is contained in:
Campbell Barton
2010-11-21 13:41:43 +00:00
parent 722376ed7b
commit 39b7bfe6bd
8 changed files with 95 additions and 99 deletions

View File

@@ -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}")