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:
authorAntony Riakiotakis <kalast@gmail.com>2012-07-05 15:39:11 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-07-05 15:39:11 +0400
commitfa92f2fb5524165c3c2ef0e7b37f60f0971a58cd (patch)
treea397f9817a95deaacd1cedcf0e3dc442734f624e /source/creator
parent2442bcf80707234afdd9013348793768f4ae03f2 (diff)
Update build systems to copy needed dlls from MinGW-w64, turn openmp on by default for MinGW.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index d9ac43d7622..940c92b349c 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -551,9 +551,20 @@ elseif(WIN32)
)
elseif(WITH_MINGW64)
install(
- FILES ${LIBDIR}/binaries/pthreadGC2-w64.dll
+ FILES
+ ${LIBDIR}/binaries/libgcc_s_sjlj-1.dll
+ ${LIBDIR}/binaries/libwinpthread-1.dll
+ ${LIBDIR}/binaries/libstdc++-6.dll
DESTINATION ${TARGETDIR}
)
+
+ if(WITH_OPENMP)
+ install(
+ FILES
+ ${LIBDIR}/binaries/libgomp-1.dll
+ DESTINATION ${TARGETDIR}
+ )
+ endif()
endif()
endif()