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 ee17f43 commit 60e325cCopy full SHA for 60e325c
.github/workflows/make-example-on-windows.yml
@@ -29,13 +29,17 @@ jobs:
29
dir: ${{ runner.temp }}
30
setup-python: false
31
32
- - name: (8) Build
33
- working-directory: D:\a\qhexedit2\qhexedit2
+ - name: list files
+ run: |
34
+ dir ${{ github.workspace }}
35
+
36
+ - name: (3) Build
37
+ working-directory: ${{ runner.temp }}
38
run: |
- cd build
- qmake ..\qhexedit.pro
- ${{ runner.temp }}\jom\jom -j2
- cd release
39
+ cd ${{ runner.temp }}\build
40
+ qmake ..\example\qhexedit.pro
41
+ nmake
42
+ dir
43
windeployqt --qmldir ${{ env.SOURCE_DIR }} example.exe --pdb --release --compiler-runtime
44
copy C:\Windows\System32\concrt140.dll .
45
copy C:\Windows\System32\vccorlib140.dll .
0 commit comments