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:
authorJens Verwiebe <info@jensverwiebe.de>2014-11-16 19:03:44 +0300
committerJens Verwiebe <info@jensverwiebe.de>2014-11-16 19:03:44 +0300
commitfa821a969ea935b0251f9aa0c893ab174e03a580 (patch)
tree17a36453c54bbe3fa22d7cbd83232fc09ac255ad /source/creator
parent97e2d62c79fc30eacdbcb7d0464ed6d1726833a5 (diff)
OSX/buildsystems: unify openmp handling by changing iomp5 id to @loader_path/../Resources/lib/libiomp5.dylib
This makes install_name_tool usage obsolete here and also assures cmake builds can be codesigned. IMPORTANT: update lib (darwin-9.x.universal/openmp)
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index bb669b6f296..434f3c40e74 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -837,7 +837,7 @@ elseif(APPLE)
if(WITH_OPENMP AND CMAKE_C_COMPILER_ID MATCHES "Clang" AND NOT ${CMAKE_C_COMPILER_VERSION} VERSION_LESS '3.4')
install(
FILES ${LIBDIR}/openmp/lib/libiomp5.dylib
- DESTINATION blender.app/Contents/MacOS
+ DESTINATION blender.app/Contents/Resources/lib/
)
endif()