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