From 407b3b2ad0ddfeeb0bae4545a547cf13f70465c7 Mon Sep 17 00:00:00 2001 From: Gerhard Kitzler Date: Wed, 15 Jan 2014 13:52:08 +0000 Subject: [PATCH] Added the FFMPEG dlls to the "installation process" --- windows/postBuild_netgen.bat | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/windows/postBuild_netgen.bat b/windows/postBuild_netgen.bat index d3059adc..452349a2 100644 --- a/windows/postBuild_netgen.bat +++ b/windows/postBuild_netgen.bat @@ -113,6 +113,16 @@ if /i "%BUILD_ARCH%" == "win32" ( REM if errorlevel 1 goto externalInstallFailed ) +REM *** Finally copy the FFMPEG dlls to the bin folder *** +if /i "%BUILD_ARCH%"=="x64" ( + echo Copying FFMPEG dlls + C:\Windows\System32\xcopy "%PROJ_DIR%..\..\ext_libs\FFMPEG\dll\x64\*.dll" "%INSTALL_FOLDER%\bin" /i /d /y +) +if /i "%BUILD_ARCH%"=="win32" ( + echo Copying FFMPEG dlls + C:\Windows\System32\xcopy "%PROJ_DIR%..\..\ext_libs\FFMPEG\dll\Win32\*.dll" "%INSTALL_FOLDER%\bin" /i /d /y +) + echo Copying tutorials xcopy "%PROJ_DIR%..\tutorials" "%INSTALL_FOLDER%\tutorials\" /i /d /y /e