Skip to content

Force 10-byte frame header for CLX #319

Force 10-byte frame header for CLX

Force 10-byte frame header for CLX #319

Workflow file for this run

name: Windows-x86
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '5.15.2'
arch: 'win32_msvc2019'
- name: Configure
run: cmake -S. -Bbuild -A Win32
- name: Make
run: cmake --build build --config Release -j $(nproc)
- name: Package
run: |
mkdir dist
copy build\Release\D1GraphicsTool.exe dist
cd dist
windeployqt D1GraphicsTool.exe --no-compiler-runtime --no-opengl-sw --no-system-d3d-compiler --no-virtualkeyboard --no-translations --no-quick-import
shell: cmd
- name: Upload
if: ${{ !env.ACT }}
uses: actions/upload-artifact@v4
with:
name: D1GraphicsTool-Windows-x86
path: dist