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>2015-04-06 20:55:51 +0300
committerJens Verwiebe <info@jensverwiebe.de>2015-04-06 20:55:51 +0300
commit2aa79679dca564b47f5db868160508adba9e08ca (patch)
tree7838fd914decde447c51c5753793a1f85656c9d7 /source/creator
parent28e9058e7ad29844c111e02fd1b44c9fc57a9b1f (diff)
OSX: add also license for iomp5 using cmake and fix all textfiles wrong destination
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 193737e9822..c0b0c2eadb6 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -843,7 +843,7 @@ elseif(APPLE)
)
# install release and app files
- set(BLENDER_TEXT_FILES_DESTINATION blender.app/Contents)
+ set(BLENDER_TEXT_FILES_DESTINATION ".")
install(
FILES ${OSX_APP_SOURCEDIR}/Contents/PkgInfo
@@ -860,6 +860,11 @@ elseif(APPLE)
FILES ${LIBDIR}/openmp/lib/libiomp5.dylib
DESTINATION blender.app/Contents/Resources/lib/
)
+ install(
+ FILES ${LIBDIR}/openmp/LICENSE.txt
+ DESTINATION "."
+ RENAME LICENSE-libiomp5.txt
+ )
endif()
if(WITH_LLVM AND NOT LLVM_STATIC)