Skip to content

Commit 9a9d634

Browse files
committed
More DLL
1 parent 745b9b1 commit 9a9d634

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/uwp.yml

+12
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,15 @@ jobs:
7070
- name: 'Build'
7171
working-directory: ${{ github.workspace }}
7272
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+
working-directory: ${{ github.workspace }}
80+
run: cmake --preset=${{ matrix.build_type }} -DBUILD_SHARED_LIBS=ON
81+
82+
- name: 'Build (DLL)'
83+
working-directory: ${{ github.workspace }}
84+
run: cmake --build out\build\${{ matrix.build_type }}

0 commit comments

Comments
 (0)