We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5023ca commit e2ba818Copy full SHA for e2ba818
.github/workflows/cpp-build-lindows.yml
@@ -31,20 +31,22 @@ jobs:
31
steps:
32
- uses: actions/checkout@v3
33
34
- - name: Install Qt and MSVC
+ - name: Install Qt
35
uses: jurplel/install-qt-action@v3
36
with:
37
version: '5.15.2'
38
target: desktop
39
+ arch: win64_msvc2019_64
40
- - name: Build .exe
41
+ - name: Build with qmake + nmake
42
shell: cmd
43
run: |
- qmake
44
+ call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
45
+ qmake csv_converter.pro
46
nmake
47
48
- name: Upload .exe
49
uses: actions/upload-artifact@v4
50
51
name: csv_converter-windows
- path: release/*.exe
52
+ path: release\csv_converter.exe
0 commit comments