Skip to content

Commit b44d527

Browse files
committed
wip: github action to build on windows
1 parent 0e47d76 commit b44d527

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

.github/workflows/windows-qt.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build Qt App on Windows
2+
3+
on:
4+
push:
5+
branches: ['**']
6+
pull_request:
7+
branches: ['**']
8+
9+
jobs:
10+
build:
11+
runs-on: windows-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Set up vcpkg
18+
uses: lukka/run-vcpkg@v11

vcpkg-configuration.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"default-registry": {
3+
"kind": "builtin",
4+
"baseline": "d8ad13c401b30c2836d00b8923c9127f05f591c7"
5+
}
6+
"overlay-ports": [
7+
"vcpkg/ports"
8+
],
9+
"overlay-triplets": [
10+
"vcpkg/triplets"
11+
]
12+
}

vcpkg.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"dependencies": [
3+
"qt"
4+
]
5+
}

0 commit comments

Comments
 (0)