Use QMakeSpec env instead of -spec

This commit is contained in:
Marcus Huderle 2025-05-18 19:46:01 -05:00
parent 39ef3513e7
commit e46f07f927

View File

@ -124,7 +124,8 @@ jobs:
- name: Run Qmake
env:
QTDIR: ../Qt/6.9.0
run: qmake.exe -o Makefile porymap.pro -spec win32-g++ "CONFIG+=qtquickcompiler"
QMAKESPEC: ../Qt/6.9.0/mkspecs/win32-g++
run: qmake.exe -o Makefile porymap.pro "CONFIG+=qtquickcompiler"
- name: Add mingw to PATH
run: echo "$env:GITHUB_WORKSPACE/../mingw1310_64/bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8