Include the Windows DLL import library in binaries

This commit fixes an issue where you couldn't actually link to
`wasmtime.dll` via a C compiler because it was missing its import
library, `wasmtime.dll.lib`
This commit is contained in:
Alex Crichton
2020-03-27 12:14:45 -07:00
committed by Andrew Brown
parent 4ede98fe0c
commit 9d40e1072a

View File

@@ -421,7 +421,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
- run: cp target/release/libwasmtime.{dylib,a} dist
if: matrix.os == 'macos-latest'
- run: cp target/release/wasmtime.{dll,lib} dist
- run: cp target/release/wasmtime.{dll,lib,dll.lib} dist
shell: bash
if: matrix.os == 'windows-latest'