I'm trying to use Qt5 as a dependency on Windows. I have Qt5.15 installed but when I run Meson with `dependency('qt5', modules: ['Core', 'Gui'])` I get this:
```
qmake found: NO need ['>= 5', '< 6']
Run-time dependency qt5 (modules: Core, Gui) found: NO (tried pkgconfig and config-tool)
meson.build:8:0: ERROR: Dependency "qt5" not found, tried pkgconfig and config-tool
```
meson-log.txt provides only a little more information:
```
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'Qt5Core' with pkg-config executable 'C:\\msys64\\mingw64\\bin\\pkg-config.EXE'
env[PKG_CONFIG_PATH]:
Called `C:\msys64\mingw64\bin\pkg-config.EXE --modversion Qt5Core` -> 1
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'Qt5Core' with pkg-config executable 'C:\\msys64\\mingw64\\bin\\pkg-config.EXE'
env[PKG_CONFIG_PATH]:
qmake binary missing from cross or native file, or env var undefined.
Trying a default qmake fallback at qmake-Qt5
Trying a default qmake fallback at qmake
qmake found: NO need ['>= 5', '< 6']
Run-time dependency qt5 (modules: Core, Gui) found: NO (tried pkgconfig and config-tool)
meson.build:8:0: ERROR: Dependency "qt5" not found, tried pkgconfig and config-tool
```
How can I figure out why Qt5 is not detected?