From fa92f2fb5524165c3c2ef0e7b37f60f0971a58cd Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Thu, 5 Jul 2012 11:39:11 +0000 Subject: Update build systems to copy needed dlls from MinGW-w64, turn openmp on by default for MinGW. --- source/creator/CMakeLists.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'source/creator') 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() -- cgit v1.2.3