diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-11-03 15:33:35 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-11-11 23:06:49 +0530 |
commit | a63d81bafe5436a452c6df6a332dbda10e519078 (patch) | |
tree | 275349e9e95ccb7f59fbf255be04e0b7b9358d49 | |
parent | 4fb978e1f794e4088be0d47b5ff7de623f30a19c (diff) | |
download | meson-a63d81bafe5436a452c6df6a332dbda10e519078.zip meson-a63d81bafe5436a452c6df6a332dbda10e519078.tar.gz meson-a63d81bafe5436a452c6df6a332dbda10e519078.tar.bz2 |
appveyor: Install pkg-config for MSVC builds
-rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index c0edf5c..8643b39 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -89,6 +89,8 @@ install: # but they have a broken certificate (on Windows) and an HSTS policy that # forces usage of HTTPS, so we mirror our own copy. - ps: If($Env:compiler -eq 'msys2-mingw') {(new-object Net.WebClient).DownloadFile('https://nirbheek.in/files/meson/get-pip.py', 'C:\projects\meson\get-pip.py')} + # pkg-config is needed for some msvc and cygwin tests + - ps: If($Env:compiler -ne 'msys2-mingw') {(new-object net.webclient).DownloadFile('http://nirbheek.in/files/binaries/pkg-config/win32/pkg-config.exe', 'C:\projects\meson\pkg-config.exe')} - cmd: if %compiler%==msys2-mingw ( %PYTHON% "C:\projects\meson\get-pip.py" ) - cmd: if %compiler%==cygwin ( call ci\appveyor-install.bat ) - ps: | |