win64 appveyor build
This commit is contained in:
parent
1f4bc4bb89
commit
1daf99614b
|
@ -5,4 +5,5 @@ image:
|
|||
#- Ubuntu1804
|
||||
build_script:
|
||||
- cmd: pipelines/win32_build.bat
|
||||
- cmd: pipelines/win64_build.bat
|
||||
- sh: ./pipelines/linux_build.sh
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue