We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aba9ba commit f5fefb6Copy full SHA for f5fefb6
1 file changed
.github/workflows/cmake-multi-platform.yml
@@ -156,8 +156,10 @@ jobs:
156
run: |
157
mkdir -p artifacts
158
159
- # Find and copy the built library (location varies by OS)
+ # Find and copy the built library (location varies by OS and build system)
160
if [ "${{ runner.os }}" = "Windows" ]; then
161
+ # Windows/MSVC puts output in plugins subdirectory
162
+ cp binaryninja-api/build/plugins/${{ env.REPO_NAME }}/Release/${{ matrix.lib_prefix }}${{ env.REPO_NAME }}.${{ matrix.ext }} artifacts/ || \
163
cp binaryninja-api/build/out/bin/Release/${{ matrix.lib_prefix }}${{ env.REPO_NAME }}.${{ matrix.ext }} artifacts/ || \
164
cp binaryninja-api/build/out/bin/${{ matrix.lib_prefix }}${{ env.REPO_NAME }}.${{ matrix.ext }} artifacts/
165
else
0 commit comments