Skip to content

Commit

Permalink
github action #110
Browse files Browse the repository at this point in the history
  • Loading branch information
yousefvand committed Nov 25, 2024
1 parent b008b2b commit 17e686f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions/cache@v3
with:
path: D:\qt-source
key: qt-source-6.5.3-windows
key: qt-source-6.5.3
restore-keys: |
qt-source-
Expand Down Expand Up @@ -98,6 +98,17 @@ jobs:
SET "VS_VARS_CMD=%VS_PATH%\VC\Auxiliary\Build\vcvars64.bat"
CALL "%VS_VARS_CMD%" || exit /b 1
REM Validate required tools
IF NOT EXIST "C:\Program Files\LLVM\bin\clang.exe" (
echo "LLVM tools not found! Check LLVM installation." && exit /b 1
)
IF NOT EXIST "C:\Program Files\gperf\gperf.exe" (
echo "gperf not found! Check gperf installation." && exit /b 1
)
IF NOT EXIST "C:\Program Files\bison\bison.exe" (
echo "bison not found! Check bison installation." && exit /b 1
)
REM Build Qt from source
SET QT_SOURCE=D:\qt-source\qt-everywhere-src-6.5.3
IF NOT EXIST "%QT_SOURCE%\qtbase\configure.bat" (
Expand Down

0 comments on commit 17e686f

Please sign in to comment.