ci/mingw: resolve pkgconfig deprecation warning in meson

pkgconfig is deprecated in favor of pkg-config. Define both for
compatibility with meson < 1.3.0.

https://mesonbuild.com/Release-notes-for-1-3-0.html#machine-files-pkgconfig-field-deprecated-and-replaced-by-pkgconfig
This commit is contained in:
Kacper Michajłow 2024-05-22 02:04:22 +02:00
parent bec3f606cf
commit 8f220067df
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ cpp = ['ccache', '${CXX}']
ar = '${AR}'
strip = '${TARGET}-strip'
pkgconfig = 'pkg-config'
pkg-config = 'pkg-config'
windres = '${TARGET}-windres'
dlltool = '${TARGET}-dlltool'
exe_wrapper = 'wine'