fceux/pipelines/win64_build.bat

22 lines
624 B
Batchfile
Raw Normal View History

2020-06-17 06:42:48 +00:00
set PROJECT_ROOT=%~dp0..
msbuild %PROJECT_ROOT%\vc\vc14_fceux.vcxproj /p:Configuration=Release /p:Platform="x64"
@if ERRORLEVEL 1 goto end
cd %PROJECT_ROOT%\vc
REM Create Zip Archive
2020-06-17 06:42:48 +00:00
cd %PROJECT_ROOT%\output
2021-06-08 21:43:13 +00:00
..\vc\zip -X -9 -j ..\vc\fceux64.zip ..\vc\x64\Release\fceux64.exe ..\src\drivers\win\lua\x64\lua5.1.dll ..\src\drivers\win\lua\x64\lua51.dll ..\src\auxlib.lua ..\src\drivers\win\7z_64.dll
@if ERRORLEVEL 1 goto end
2020-06-17 10:49:30 +00:00
..\vc\zip -X -9 -u -r ..\vc\fceux64.zip fceux.chm taseditor.chm palettes luaScripts tools
2020-06-17 06:42:48 +00:00
@if ERRORLEVEL 1 goto end
cd %PROJECT_ROOT%
appveyor PushArtifact %PROJECT_ROOT%\vc\fceux64.zip
2020-06-17 10:49:30 +00:00
:end