Fix create-exe in Windows

This commit is contained in:
Syrus Akbary
2021-02-04 18:42:00 -08:00
committed by GitHub
parent 0cf18401cc
commit 77f2e85473

View File

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