mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2024-11-23 11:59:48 +00:00
17 lines
350 B
Rust
17 lines
350 B
Rust
fn main() {
|
|
cc::Build::new()
|
|
.include("mhycrypto")
|
|
.cpp(true)
|
|
.file("mhycrypto/memecrypto.cpp")
|
|
.file("mhycrypto/metadata.cpp")
|
|
.file("mhycrypto/metadatastringdec.cpp")
|
|
.compile("mhycrypto");
|
|
|
|
cc::Build::new()
|
|
.include("mhycrypto")
|
|
.file("mhycrypto/aes.c")
|
|
.compile("mhycrypto-aes");
|
|
|
|
tauri_build::build()
|
|
}
|