mirror of
https://github.com/TeamPiped/reqwest4j.git
synced 2024-08-14 23:54:39 +00:00
14 lines
447 B
Text
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")
|
|
}
|