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>2013-05-20 20:15:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-20 20:15:16 +0400
commit7759b2743a5a41c16fd4ddc2943ba49c70a078b5 (patch)
treea3bafce72aa9900a5b7e40628d09f9a686f49178 /source/blender/editors/physics
parent3758193c18a886faa5bb803dd378f24866e793e5 (diff)
code cleanup: replace PARALLEL define with _OPENMP
Diffstat (limited to 'source/blender/editors/physics')
-rw-r--r--source/blender/editors/physics/CMakeLists.txt4
-rw-r--r--source/blender/editors/physics/SConscript4
2 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/editors/physics/CMakeLists.txt b/source/blender/editors/physics/CMakeLists.txt
index 29d8aec4224..3701598f87f 100644
--- a/source/blender/editors/physics/CMakeLists.txt
+++ b/source/blender/editors/physics/CMakeLists.txt
@@ -54,10 +54,6 @@ if(WITH_MOD_FLUID)
add_definitions(-DWITH_MOD_FLUID)
endif()
-if(WITH_OPENMP)
- add_definitions(-DPARALLEL=1)
-endif()
-
if(WITH_INTERNATIONAL)
add_definitions(-DWITH_INTERNATIONAL)
endif()
diff --git a/source/blender/editors/physics/SConscript b/source/blender/editors/physics/SConscript
index 7916ea24bde..2583c9f964a 100644
--- a/source/blender/editors/physics/SConscript
+++ b/source/blender/editors/physics/SConscript
@@ -44,10 +44,6 @@ if env['OURPLATFORM'] == 'linux':
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', 'win64-mingw'):
incs += ' ' + env['BF_PTHREADS_INC']
-if env['OURPLATFORM'] == 'darwin':
- if env['WITH_BF_OPENMP']:
- defs.append('PARALLEL=1')
-
if env['WITH_BF_INTERNATIONAL']:
defs.append('WITH_INTERNATIONAL')