Skip to content

Update readme

Update readme #29

Workflow file for this run

# Build a Qt project on Windows
name: Build on Windows
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
if: false # Disable for now
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: '5.12.12'
host: 'windows'
target: 'desktop'
arch: 'win64_msvc2017_64'
modules: 'gui core serialport network opengl xml'
- name: qmake
run: qmake .
- name: make
run: make
- name: make check
run: make check
# - name: make distcheck
# run: make distcheck