win64 appveyor build

This commit is contained in:
bbbradsmith 2020-06-17 02:42:48 -04:00 committed by Brad Smith
parent 1f4bc4bb89
commit 1daf99614b
2 changed files with 19 additions and 0 deletions

View File

@ -5,4 +5,5 @@ image:
#- Ubuntu1804 #- Ubuntu1804
build_script: build_script:
- cmd: pipelines/win32_build.bat - cmd: pipelines/win32_build.bat
- cmd: pipelines/win64_build.bat
- sh: ./pipelines/linux_build.sh - sh: ./pipelines/linux_build.sh

18
pipelines/win64_build.bat Normal file
View File

@ -0,0 +1,18 @@
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
cd %PROJECT_ROOT%\output
..\vc\zip -X -9 -r ..\vc\fceux64.zip ..\vc\x64\Release\fceux.exe fceux.chm taseditor.chm ..\src\drivers\win\lua\x64\lua5.1.dll ..\src\drivers\win\lua\x64\lua51.dll 7z.dll ..\src\auxlib\auxlib.lua palettes luaScripts tools
@if ERRORLEVEL 1 goto end
cd %PROJECT_ROOT%
appveyor PushArtifact %PROJECT_ROOT%\vc\fceux64.zip
:end