Skip to content

Commit e2ba818

Browse files
authored
Update cpp-build-lindows.yml
1 parent b5023ca commit e2ba818

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/cpp-build-lindows.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,22 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@v3
3333

34-
- name: Install Qt and MSVC
34+
- name: Install Qt
3535
uses: jurplel/install-qt-action@v3
3636
with:
3737
version: '5.15.2'
3838
target: desktop
39+
arch: win64_msvc2019_64
3940

40-
- name: Build .exe
41+
- name: Build with qmake + nmake
4142
shell: cmd
4243
run: |
43-
qmake
44+
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
45+
qmake csv_converter.pro
4446
nmake
4547
4648
- name: Upload .exe
4749
uses: actions/upload-artifact@v4
4850
with:
4951
name: csv_converter-windows
50-
path: release/*.exe
52+
path: release\csv_converter.exe

0 commit comments

Comments
 (0)