Appveyor CI

This commit is contained in:
Alberto Fustinoni
2017-12-21 20:37:35 +09:00
parent 25bb3e6c50
commit 94a413ea07
2 changed files with 36 additions and 0 deletions

View File

@@ -1,3 +1,6 @@
[![Build Status](https://travis-ci.org/libretro/libretro-fceumm.svg?branch=master)](https://travis-ci.org/libretro/libretro-fceumm)
[![Build status](https://ci.appveyor.com/api/projects/status/etk1vcouybahdbkt/branch/master?svg=true)](https://ci.appveyor.com/project/bparker06/libretro-fceumm/branch/master)
# FCE Ultra mappers modified
FCEU "mappers modified" is an unofficial build of FCEU Ultra by CaH4e3, which supports a lot of new mappers including some obscure mappers such as one for unlicensed NES ROM's.

33
appveyor.yml Normal file
View File

@@ -0,0 +1,33 @@
version: 0.1.{build}
shallow_clone: true
image: Visual Studio 2017
environment:
makefile_location: "."
makefile_name: makefile.libretro
target_name: fceumm
configuration:
- release
platform:
- windows_msvc2017_uwp_x64
- windows_msvc2017_uwp_x86
- windows_msvc2017_uwp_arm
- windows_msvc2017_desktop_x64
- windows_msvc2017_desktop_x86
init:
- set Path=C:\msys64\usr\bin;%Path%
build_script:
- cd %makefile_location%
- make -f %makefile_name% platform=%platform%
artifacts:
- path: '%makefile_location%\%target_name%*.dll'
- path: '%makefile_location%\%target_name%*.lib'
- path: '%makefile_location%\%target_name%*.pdb'
- path: '**\libretro.h'