Fix mistake in name of C API lib on Windows

This commit is contained in:
Mark McCaskey
2020-10-13 14:45:19 -07:00
parent 58b05a9881
commit 3a59e8a59d

View File

@@ -174,7 +174,7 @@ fn get_libwasmer_path() -> anyhow::Result<PathBuf> {
#[cfg(not(windows))]
path.push("libwasmer.a");
#[cfg(windows)]
path.push("libwasmer.lib");
path.push("wasmer_c_api.lib");
Ok(path)
}