fceux/pipelines/win32_build.bat

22 lines
365 B
Batchfile

set PROJECT_ROOT=%~dp0..
REM echo %PROJECT_ROOT%
msbuild %PROJECT_ROOT%\vc\vc14_fceux.vcxproj
cd %PROJECT_ROOT%\vc
REM Copy Executable and dlls to output directory
copy vc14_bin_Debug\fceux.exe ..\output\.
copy vc14_bin_Debug\7z.dll ..\output\.
REM Create Zip Archive
cd %PROJECT_ROOT%
appveyor PushArtifact output
REM archive.bat
cd %PROJECT_ROOT%