fceux/pipelines/win32_build.bat

23 lines
501 B
Batchfile
Raw Normal View History

2020-06-17 01:14:44 +00:00
set PROJECT_ROOT=%~dp0..
REM echo %PROJECT_ROOT%
msbuild %PROJECT_ROOT%\vc\vc14_fceux.vcxproj
cd %PROJECT_ROOT%\vc
2020-06-17 01:23:52 +00:00
REM Copy Executable and dlls to output directory
2020-06-17 01:14:44 +00:00
copy vc14_bin_Debug\fceux.exe ..\output\.
2020-06-17 01:23:52 +00:00
copy vc14_bin_Debug\7z.dll ..\output\.
2020-06-17 01:14:44 +00:00
REM Create Zip Archive
2020-06-17 01:51:45 +00:00
REM archive.bat
cd %PROJECT_ROOT%\output
..\vc\zip -X -9 -r ..\vc\fceux.zip fceux.exe fceux.chm taseditor.chm 7z.dll *.dll palettes luaScripts tools
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