We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a07fcb commit d308f6cCopy full SHA for d308f6c
.github/workflows/vcpkg.yml
@@ -126,3 +126,15 @@ jobs:
126
- name: 'Build'
127
working-directory: ${{ github.workspace }}
128
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
136
+ run: cmake --preset=${{ matrix.build_type }} -DBUILD_SHARED_LIBS=ON
137
138
+ - name: 'Build (DLL)'
139
140
+ run: cmake --build out\build\${{ matrix.build_type }}
0 commit comments