2020-06-17 01:14:44 +00:00
|
|
|
|
|
|
|
set PROJECT_ROOT=%~dp0..
|
|
|
|
|
2020-06-17 05:50:38 +00:00
|
|
|
msbuild %PROJECT_ROOT%\vc\vc14_fceux.vcxproj /p:Configuration=Release /p:Platform="Win32"
|
|
|
|
@if ERRORLEVEL 1 goto end
|
2020-06-17 01:14:44 +00:00
|
|
|
|
|
|
|
cd %PROJECT_ROOT%\vc
|
|
|
|
|
|
|
|
REM Create Zip Archive
|
2020-06-17 01:51:45 +00:00
|
|
|
cd %PROJECT_ROOT%\output
|
2020-06-17 05:50:38 +00:00
|
|
|
..\vc\zip -X -9 -r ..\vc\fceux.zip fceux.exe fceux.chm taseditor.chm lua5.1.dll lua51.dll 7z.dll auxlib.lua palettes luaScripts tools
|
|
|
|
@if ERRORLEVEL 1 goto end
|
2020-06-17 01:14:44 +00:00
|
|
|
|
|
|
|
cd %PROJECT_ROOT%
|
|
|
|
|
2020-06-17 01:45:16 +00:00
|
|
|
appveyor PushArtifact %PROJECT_ROOT%\vc\fceux.zip
|
|
|
|
|
2020-06-17 05:50:38 +00:00
|
|
|
:end
|