mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
c7a3eb34a4
because they dont have `GStatBuf` available, #389
85 lines
4.1 KiB
YAML
85 lines
4.1 KiB
YAML
image:
|
|
- Visual Studio 2015
|
|
- Visual Studio 2017
|
|
|
|
build:
|
|
parallel: true
|
|
verbosity: detailed
|
|
|
|
configuration:
|
|
- Release
|
|
|
|
environment:
|
|
matrix:
|
|
- platform: x86
|
|
glib-url: http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.28/glib_2.28.8-1_win32.zip
|
|
glib-dev-url: http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.28/glib-dev_2.28.8-1_win32.zip
|
|
pkg-config-url: http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/pkg-config_0.26-1_win32.zip
|
|
gettext-url: http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/gettext-runtime_0.18.1.1-2_win32.zip
|
|
proxy-libintl-dev-url: http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/proxy-libintl-dev_20100902_win32.zip
|
|
|
|
- platform: x64
|
|
glib-url: http://ftp.gnome.org/pub/gnome/binaries/win64/glib/2.26/glib_2.26.1-1_win64.zip
|
|
glib-dev-url: http://ftp.gnome.org/pub/gnome/binaries/win64/glib/2.26/glib-dev_2.26.1-1_win64.zip
|
|
pkg-config-url: http://ftp.gnome.org/pub/gnome/binaries/win64/dependencies/pkg-config_0.23-2_win64.zip
|
|
gettext-url: http://ftp.gnome.org/pub/gnome/binaries/win64/dependencies/gettext-runtime_0.18.1.1-2_win64.zip
|
|
proxy-libintl-dev-url: http://ftp.gnome.org/pub/gnome/binaries/win64/dependencies/proxy-libintl-dev_20100902_win64.zip
|
|
|
|
- platform: x86
|
|
glib-url: http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.16/glib_2.16.6-1_win32.zip
|
|
glib-dev-url: http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.16/glib-dev_2.16.6-1_win32.zip
|
|
pkg-config-url: http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/pkg-config_0.26-1_win32.zip
|
|
gettext-url: http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/gettext-runtime_0.18.1.1-2_win32.zip
|
|
proxy-libintl-dev-url: http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/proxy-libintl-dev_20100902_win32.zip
|
|
|
|
- platform: x64
|
|
glib-url: http://ftp.acc.umu.se/pub/gnome/binaries/win64/glib/2.24/glib_2.24.2-2_win64.zip
|
|
glib-dev-url: http://ftp.acc.umu.se/pub/gnome/binaries/win64/glib/2.24/glib-dev_2.24.0-1_win64.zip
|
|
pkg-config-url: http://ftp.gnome.org/pub/gnome/binaries/win64/dependencies/pkg-config_0.23-2_win64.zip
|
|
gettext-url: http://ftp.gnome.org/pub/gnome/binaries/win64/dependencies/gettext-runtime_0.18.1.1-2_win64.zip
|
|
proxy-libintl-dev-url: http://ftp.gnome.org/pub/gnome/binaries/win64/dependencies/proxy-libintl-dev_20100902_win64.zip
|
|
|
|
init:
|
|
- set TARGET_PLATFORM=
|
|
- if "%platform%"=="x64" ( set TARGET_PLATFORM= Win64)
|
|
- echo %TARGET_PLATFORM%
|
|
- echo %APPVEYOR_BUILD_WORKER_IMAGE%
|
|
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" ( set "generator=Visual Studio 15 2017%TARGET_PLATFORM%" )
|
|
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" ( set "generator=Visual Studio 14 2015%TARGET_PLATFORM%" )
|
|
- echo %generator%
|
|
|
|
install:
|
|
# make sure the latest version of git is installed
|
|
- choco upgrade git -y
|
|
- mkdir c:\deps
|
|
- cd c:\deps
|
|
- curl -fsS -o glib.zip %glib-url%
|
|
- curl -fsS -o glib-dev.zip %glib-dev-url%
|
|
- curl -fsS -o pkg-config.zip %pkg-config-url%
|
|
- curl -fsS -o gettext.zip %gettext-url%
|
|
- curl -fsS -o libintl-dev.zip %proxy-libintl-dev-url%
|
|
- 7z x glib.zip > NUL
|
|
- 7z x glib-dev.zip > NUL
|
|
- 7z x pkg-config.zip > NUL
|
|
- 7z x gettext.zip > NUL
|
|
- 7z x libintl-dev.zip > NUL
|
|
- SET PATH=C:\deps\bin;%PATH%
|
|
|
|
build_script:
|
|
# - call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
|
|
# - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
|
|
- cd C:\projects\fluidsynth
|
|
- mkdir build
|
|
- cd build
|
|
- cmake -G "%generator%" ..
|
|
- cmake --build . --config Release # build libfluidsynth and fluidsynth exec
|
|
# FIXME the linker doesnt find gthread-2.0.lib in the second run, why???
|
|
# - cmake -Denable-tests=1 ..
|
|
# - cmake --build . --config Release --target check # build unittests
|
|
|
|
after_build:
|
|
- 7z a fluidsynth-%platform%.zip %APPVEYOR_BUILD_FOLDER%\build\src\Release\* c:\deps\bin\libglib*.dll c:\deps\bin\libgthread*.dll c:\deps\bin\*intl*.dll
|
|
|
|
artifacts:
|
|
- path: build/fluidsynth-%platform%.zip
|
|
name: FluidSynth
|