We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cac63f4 commit bd8cc44Copy full SHA for bd8cc44
.github/workflows/test.yml
@@ -106,7 +106,7 @@ jobs:
106
run: |
107
cd tests/TestWithModules
108
for /f "delims=" %%d in ( 'vswhere.exe -latest -property installationPath' ) do @( call "%%d\VC\Auxiliary\Build\vcvars64.bat" )
109
- IF "%QT_VERSION:~0,1%"=="5" ( dir %Qt5_DIR%\lib\cmake ) ELSE ( dir %Qt6_DIR%\lib\cmake )
+ IF "%QT_VERSION:~0,1%"=="5" ( dir %Qt5_DIR% ) ELSE ( dir %QT_ROOT_DIR%\lib\cmake )
110
qmake
111
shell: cmd
112
@@ -117,9 +117,9 @@ jobs:
117
118
119
if [[ $QT_VERSION == 6* ]]; then
120
- ls "$Qt6_DIR/lib/cmake"
+ ls "${QT_ROOT_DIR}/lib/cmake"
121
else
122
- ls "$Qt5_DIR/lib/cmake"
+ ls "${Qt5_DIR}"
123
fi
124
125
shell: bash
0 commit comments