1version: 0.1.{build}
2
3shallow_clone: true
4
5image: Visual Studio 2017
6
7environment:
8  makefile_location: "."
9  makefile_name: Makefile
10  target_name: mednafen_psx
11
12configuration:
13  - release
14
15platform:
16  - windows_msvc2017_uwp_x64
17  - windows_msvc2017_uwp_x86
18  - windows_msvc2017_uwp_arm
19  - windows_msvc2017_desktop_x64
20  - windows_msvc2017_desktop_x86
21
22init:
23  - set Path=C:\msys64\usr\bin;%Path%
24
25build_script:
26  - cd %makefile_location%
27  - make -f %makefile_name% platform=%platform%
28
29artifacts:
30  - path: '**\%target_name%*.dll'
31  - path: '**\%target_name%*.lib'
32  - path: '**\%target_name%*.pdb'
33  - path: '**\libretro.h'