From 058baf097d6263275ed793b19fbcfdf183a63a9c Mon Sep 17 00:00:00 2001 From: Sun Date: Fri, 16 Apr 2021 19:41:37 +0800 Subject: [PATCH] add Windows build package step --- README.md | 1 + rust.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index fd3e6ce..802d712 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ It is recommended to use [rust.sh](./rust.sh) to auto-compile the Rust code ##### Windows - `cp target/release/esse.dll core/windows/share/esse.dll` +- `cp target/release/esse.dll.lib core/windows/share/esse.dll.lib` ##### Android 1. Add your android device target diff --git a/rust.sh b/rust.sh index 25fa603..9881734 100755 --- a/rust.sh +++ b/rust.sh @@ -52,6 +52,7 @@ function windows() { cargo build --release ### there maybe not use in other windows distribution. echo 'Rust: windows release build ok!' cp target/release/esse.dll core/windows/share/esse.dll + cp target/release/esse.dll.lib core/windows/share/esse.dll.lib echo 'Flutter: windows dynamic library is ok!' }