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:
authorStefan Gartner <stefang@aon.at>2010-01-02 12:32:32 +0300
committerStefan Gartner <stefang@aon.at>2010-01-02 12:32:32 +0300
commit382e52e5c7465ff8e76ed20bda98099b4506aa0a (patch)
tree85442a6ee6841bdb74ca796cdf432235fdbb8859 /source/blender/editors/screen
parenta7d268d38e348722977a9fcf72624af691e724cd (diff)
OS X Makefiles: append -DPARALLEL=1 to CPPFLAGS when compiling with OPENMP
Diffstat (limited to 'source/blender/editors/screen')
-rw-r--r--source/blender/editors/screen/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/editors/screen/Makefile b/source/blender/editors/screen/Makefile
index 87ba3337caa..23c9d130eec 100644
--- a/source/blender/editors/screen/Makefile
+++ b/source/blender/editors/screen/Makefile
@@ -60,3 +60,8 @@ ifeq ($(WITH_OPENEXR), true)
CPPFLAGS += -DWITH_OPENEXR
endif
+ifeq ($(OS), darwin)
+ ifeq ($(WITH_BF_OPENMP), true)
+ CPPFLAGS += -DPARALLEL=1
+ endif
+endif