]> git.sesse.net Git - casparcg/blobdiff - build-scripts/build-windows.bat
[logos] Included vector versions of the CasparCG logo.
[casparcg] / build-scripts / build-windows.bat
index adccea7f5f4aedbd3c815f05ef41c89fda7b5cc1..2f13a60d4856ea07cbaf565688b8882f9b58070b 100644 (file)
@@ -18,11 +18,11 @@ echo Unpacking archived dependencies...
 
 :: Setup VC++ environment
 echo Setting up VC++...
-call "%BUILD_VCVARSALL%" x64 || goto :error
+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...
@@ -36,24 +36,27 @@ mkdir "%SERVER_FOLDER%" || goto :error
 
 :: Copy media files
 echo Copying media...
-xcopy ..\deploy\general\Server "%SERVER_FOLDER%\Server" /E /I /Y || goto :error
-xcopy ..\deploy\general\Wallpapers "%SERVER_FOLDER%\Wallpapers" /E /I /Y || goto :error
+xcopy ..\deploy\general\server "%SERVER_FOLDER%\server" /E /I /Y || goto :error
+xcopy ..\deploy\general\wallpapers "%SERVER_FOLDER%\wallpapers" /E /I /Y || goto :error
+xcopy ..\deploy\general\logos "%SERVER_FOLDER%\logos" /E /I /Y || goto :error
 copy ..\deploy\general\CasparCG_Server_2.0-brochure.pdf "%SERVER_FOLDER%" || goto :error
 
 :: Copy binaries
 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\casparcg.config "%SERVER_FOLDER%\Server" || goto :error
-copy shell\*.ttf "%SERVER_FOLDER%\Server" || goto :error
-xcopy shell\locales "%SERVER_FOLDER%\Server\locales" /E /I /Y || goto :error
+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\casparcg_auto_restart.bat "%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...