mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 03:25:38 -04:00

%COMPILER% *used* to be set when using msvc2013, but it isn't set when building with msvc2015.
10 lines
283 B
Batchfile
10 lines
283 B
Batchfile
@ECHO OFF
|
|
if not "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2015" exit /b 0
|
|
if not "%CONFIGURATION%" == "Release" exit /b 0
|
|
|
|
cpack --version
|
|
cpack -C "%CONFIGURATION%"
|
|
if ERRORLEVEL 1 exit /b %ERRORLEVEL%
|
|
for %%z in (*.zip) do appveyor PushArtifact "%%z"
|
|
exit /b %ERRORLEVEL%
|