CI: fix msvc build
The Windows image for some reason now contains a zlib and freetype build which meson finds and tries to use. Force meson to use the subprojects always to avoid picking up system libs.
This commit is contained in:
parent
7a004a7ac2
commit
8f41b6a139
|
@ -14,6 +14,7 @@ jobs:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [windows-2019, windows-latest]
|
os: [windows-2019, windows-latest]
|
||||||
include:
|
include:
|
||||||
|
@ -45,7 +46,7 @@ jobs:
|
||||||
$env:path = ($env:path.Split(';') | Where-Object { $_ -ne 'C:\Strawberry\perl\bin' }) -join ';'
|
$env:path = ($env:path.Split(';') | Where-Object { $_ -ne 'C:\Strawberry\perl\bin' }) -join ';'
|
||||||
|
|
||||||
meson setup build `
|
meson setup build `
|
||||||
--wrap-mode=default `
|
--wrap-mode=forcefallback `
|
||||||
--buildtype=release `
|
--buildtype=release `
|
||||||
-Dglib=enabled `
|
-Dglib=enabled `
|
||||||
-Dfreetype=enabled `
|
-Dfreetype=enabled `
|
||||||
|
|
Loading…
Reference in New Issue