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-05-02 00:57:39 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-05-02 00:57:39 +0400
commite54a0039dc93535bd6518766fc29790aa627e250 (patch)
treea68f0f46f3840128fde4c15f088600670a579bfe /source/creator
parentc6051ea87b21f408dbf70d6679500f9a655914e7 (diff)
Add pthread dll for MinGW64 during installation. Now people who download from buildbot will be able to run the build even without MinGW-w64 installed.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 9168b634250..f4c3964ab83 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -566,6 +566,11 @@ elseif(WIN32)
FILES ${LIBDIR}/pthreads/lib/pthreadGC2.dll
DESTINATION ${TARGETDIR}
)
+ elseif(WITH_MINGW64)
+ install(
+ FILES ${LIBDIR}/binaries/pthreadGC2-w64.dll
+ DESTINATION ${TARGETDIR}
+ )
endif()
endif()