mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-13 00:04:10 +00:00
0e0df80f58
based on ff411b9f99a562a2decd83323ef51bc784d512b2 by @mawe42
38 lines
765 B
YAML
38 lines
765 B
YAML
os:
|
|
- Visual Studio 2015
|
|
|
|
build:
|
|
verbosity: detailed
|
|
|
|
configuration:
|
|
- Release
|
|
|
|
environment:
|
|
# update the vcpkg cache even if build fails
|
|
APPVEYOR_SAVE_CACHE_ON_ERROR: true
|
|
|
|
matrix:
|
|
- platform: x86
|
|
generator: Visual Studio 14 2015
|
|
|
|
- platform: x64
|
|
generator: Visual Studio 14 2015 Win64
|
|
|
|
cache:
|
|
- c:\Tools\vcpkg\installed
|
|
|
|
install:
|
|
- vcpkg install glib:%platform%-windows
|
|
|
|
build_script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake -G "%generator%" -Denable-pkgconfig=0 -DCMAKE_TOOLCHAIN_FILE=c:/Tools/vcpkg/scripts/buildsystems/vcpkg.cmake ..
|
|
- cmake --build . --config Release
|
|
|
|
after_build:
|
|
- 7z a fluidsynth.zip %APPVEYOR_BUILD_FOLDER%\build\src\Release\*
|
|
|
|
artifacts:
|
|
- path: build/fluidsynth.zip
|
|
name: FluidSynth
|