18 lines
451 B
Batchfile
18 lines
451 B
Batchfile
|
|
set PROJECT_ROOT=%~dp0..
|
|
|
|
msbuild %PROJECT_ROOT%\vc\vc14_fceux.vcxproj /p:Configuration=Release /p:Platform="Win32"
|
|
@if ERRORLEVEL 1 goto end
|
|
|
|
cd %PROJECT_ROOT%\vc
|
|
|
|
REM Create Zip Archive
|
|
cd %PROJECT_ROOT%\output
|
|
..\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
|
|
|
|
cd %PROJECT_ROOT%
|
|
|
|
appveyor PushArtifact %PROJECT_ROOT%\vc\fceux.zip
|
|
|
|
:end |