We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 745b9b1 commit 9a9d634Copy full SHA for 9a9d634
.github/workflows/uwp.yml
@@ -70,3 +70,15 @@ jobs:
70
- name: 'Build'
71
working-directory: ${{ github.workspace }}
72
run: cmake --build out\build\${{ matrix.build_type }}
73
+
74
+ - name: 'Clean up'
75
+ working-directory: ${{ github.workspace }}
76
+ run: Remove-Item -Path out -Recurse -Force
77
78
+ - name: 'Configure CMake (DLL)'
79
80
+ run: cmake --preset=${{ matrix.build_type }} -DBUILD_SHARED_LIBS=ON
81
82
+ - name: 'Build (DLL)'
83
84
+ run: cmake --build out\build\${{ matrix.build_type }}
0 commit comments