Skip to content

corrected qt version #5

corrected qt version

corrected qt version #5

Workflow file for this run

name: Build Qt Project
on:
push:
branches:
- cpp
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup MSVC
uses: microsoft/setup-msbuild@v1
with:
vs-version: 'latest' # Use the latest Visual Studio version
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.7.2'
- name: Build with qmake
run: |
mkdir build
cd build
qmake ..\BigPictureTV-CPP.pro
nmake
# Optionally, you can add steps for packaging or deploying the application