reqwest4j/reqwest-jni/build.gradle.kts
2023-09-24 23:41:19 +09:00

14 lines
447 B
Text

plugins {
id("fr.stardustenterprises.rust.wrapper")
}
rust {
release.set(true)
command.set("cross")
targets += target("aarch64-unknown-linux-gnu", "libreqwest.so")
targets += target("x86_64-unknown-linux-gnu", "libreqwest.so")
targets += target("aarch64-apple-darwin", "libreqwest.dylib")
targets += target("x86_64-apple-darwin", "libreqwest.dylib")
targets += target("x86_64-pc-windows-gnu", "libreqwest.dll")
}