X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=build-scripts%2Fbuild-windows.bat;h=1274a877094066cfd3033333c933b42e18a81330;hb=0a272d382859a6b0eb4af2dbe37a1e86fd735b3c;hp=2ada901dd2d75ccbb2c9718aa54f9100c52bf7c8;hpb=30c9c9ef7330457452ac935930d32cce6a1799bf;p=casparcg diff --git a/build-scripts/build-windows.bat b/build-scripts/build-windows.bat index 2ada901dd..1274a8770 100644 --- a/build-scripts/build-windows.bat +++ b/build-scripts/build-windows.bat @@ -22,7 +22,7 @@ call "%BUILD_VCVARSALL%" amd64 || goto :error :: Run cmake cd build || goto :error -cmake -G "Visual Studio 12 2013" -A x64 .. || goto :error +cmake -G "Visual Studio 14 2015" -A x64 .. || goto :error :: Build with MSBuild echo Building... @@ -45,19 +45,21 @@ 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 xcopy shell\locales "%SERVER_FOLDER%\Server\locales" /E /I /Y || goto :error :: Copy documentation echo Copying documentation... -copy ..\CHANGES.txt "%SERVER_FOLDER%" || goto :error -copy ..\LICENSE.txt "%SERVER_FOLDER%" || goto :error -copy ..\README.txt "%SERVER_FOLDER%" || goto :error +copy ..\CHANGELOG "%SERVER_FOLDER%" || goto :error +copy ..\LICENSE "%SERVER_FOLDER%" || goto :error +copy ..\README "%SERVER_FOLDER%" || goto :error :: Create zip file echo Creating zip... -"%BUILD_7ZIP%" a "%BUILD_ARCHIVE_NAME%.zip" "%SERVER_FOLDER%" || goto :error +"%BUILD_7ZIP%" a "%BUILD_ARCHIVE_NAME%.7z" "%SERVER_FOLDER%" || goto :error :: Skip exiting with failure goto :EOF