mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
trying windows auto
This commit is contained in:
parent
b65741f25f
commit
e89e6ce2f2
1 changed files with 36 additions and 0 deletions
36
.github/workflows/windows-build.yml
vendored
Normal file
36
.github/workflows/windows-build.yml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
name: Windows x64 Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- boogaloo
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- boogaloo
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Qt
|
||||||
|
uses: jurplel/install-qt-action@v3
|
||||||
|
with:
|
||||||
|
version: '6.7.3'
|
||||||
|
host: 'windows'
|
||||||
|
target: 'desktop'
|
||||||
|
arch: 'win64_msvc2019_64'
|
||||||
|
|
||||||
|
- name: Install CMake
|
||||||
|
uses: twxz/install-cmake@v2
|
||||||
|
with:
|
||||||
|
cmake-version: 'latest'
|
||||||
|
|
||||||
|
- name: Configure CMake
|
||||||
|
run: cmake -S . -B build -G "NMake Makefiles" -DCMAKE_PREFIX_PATH:PATH="%Qt5_DIR%"
|
||||||
|
|
||||||
|
- name: Build the project
|
||||||
|
run: cmake --build build --config Release
|
Loading…
Add table
Add a link
Reference in a new issue