From: Helge Norberg Date: Tue, 15 Nov 2016 20:22:15 +0000 (+0100) Subject: [CEF] excluded libcef.pdb from Windows build to be able to change back to .zip format... X-Git-Tag: 2.1.0_Beta1~1 X-Git-Url: https://git.sesse.net/?p=casparcg;a=commitdiff_plain;h=58600c62a3fc8a595a8ecab72ea5a4b87aace14f [CEF] excluded libcef.pdb from Windows build to be able to change back to .zip format which is more supported out of the box on most systems. --- diff --git a/build-scripts/build-windows.bat b/build-scripts/build-windows.bat index 1274a8770..8830d34a9 100644 --- a/build-scripts/build-windows.bat +++ b/build-scripts/build-windows.bat @@ -45,7 +45,6 @@ echo Copying binaries... copy shell\*.dll "%SERVER_FOLDER%\Server" || goto :error copy shell\RelWithDebInfo\casparcg.exe "%SERVER_FOLDER%\Server" || goto :error copy shell\RelWithDebInfo\casparcg.pdb "%SERVER_FOLDER%\Server" || goto :error -copy shell\RelWithDebInfo\libcef.dll.pdb "%SERVER_FOLDER%\Server" || goto :error copy shell\casparcg.config "%SERVER_FOLDER%\Server" || goto :error copy shell\*.ttf "%SERVER_FOLDER%\Server" || goto :error copy shell\*.pak "%SERVER_FOLDER%\Server" || goto :error @@ -59,7 +58,7 @@ copy ..\README "%SERVER_FOLDER%" || goto :error :: Create zip file echo Creating zip... -"%BUILD_7ZIP%" a "%BUILD_ARCHIVE_NAME%.7z" "%SERVER_FOLDER%" || goto :error +"%BUILD_7ZIP%" a "%BUILD_ARCHIVE_NAME%.zip" "%SERVER_FOLDER%" || goto :error :: Skip exiting with failure goto :EOF