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>2014-03-30 00:12:52 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-03-30 00:12:52 +0400
commit7571f2707a3346503a0a3732af97708992aa3461 (patch)
tree6a0172cb4381b36d57754fca7361bd493477d44c /source/creator
parenta17c38f8e458f42d96054818ba81b19707335802 (diff)
Fix MinGW64 compilation until we update the libraries.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt20
1 files changed, 12 insertions, 8 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 94ec2330291..a7a3d602c95 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -660,6 +660,18 @@ elseif(WIN32)
${LIBDIR}/ffmpeg/lib/swscale-2.dll
DESTINATION ${TARGETDIR}
)
+ elseif(WITH_MINGW64)
+ install(
+ FILES
+ ${LIBDIR}/ffmpeg/lib/avcodec-53.dll
+ ${LIBDIR}/ffmpeg/lib/avformat-53.dll
+ ${LIBDIR}/ffmpeg/lib/avdevice-53.dll
+ ${LIBDIR}/ffmpeg/lib/avutil-51.dll
+ ${LIBDIR}/ffmpeg/lib/swscale-2.dll
+ ${LIBDIR}/ffmpeg/lib/swresample-0.dll
+ ${LIBDIR}/ffmpeg/lib/xvidcore.dll
+ DESTINATION ${TARGETDIR}
+ )
else()
install(
FILES
@@ -671,14 +683,6 @@ elseif(WIN32)
DESTINATION ${TARGETDIR}
)
endif()
- if(WITH_MINGW64)
- install(
- FILES
- ${LIBDIR}/ffmpeg/lib/swresample-0.dll
- ${LIBDIR}/ffmpeg/lib/xvidcore.dll
- DESTINATION ${TARGETDIR}
- )
- endif()
endif()
if(WITH_CODEC_SNDFILE)