Skip to content

Commit d308f6c

Browse files
committed
More DLL test
1 parent 3a07fcb commit d308f6c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/vcpkg.yml

+12
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,15 @@ jobs:
126126
- name: 'Build'
127127
working-directory: ${{ github.workspace }}
128128
run: cmake --build out\build\${{ matrix.build_type }}
129+
130+
- name: 'Clean up'
131+
working-directory: ${{ github.workspace }}
132+
run: Remove-Item -Path out -Recurse -Force
133+
134+
- name: 'Configure CMake (DLL)'
135+
working-directory: ${{ github.workspace }}
136+
run: cmake --preset=${{ matrix.build_type }} -DBUILD_SHARED_LIBS=ON
137+
138+
- name: 'Build (DLL)'
139+
working-directory: ${{ github.workspace }}
140+
run: cmake --build out\build\${{ matrix.build_type }}

0 commit comments

Comments
 (0)