Open
Description
I want use macosx-x86_64
on run application, but use linux-x86_64
when package.
These way seems not working.
parent?.ext?.set("javacppPlatform", "linux-x86_64")
println(parent?.ext?.get("javacppPlatform"))
implementation(group = "org.bytedeco", name = "javacpp")
implementation(group = "org.bytedeco", name = "ffmpeg-platform")
implementation(group = "org.bytedeco", name = "javacv")
or
tasks {
"war"(War::class) {
first {
parent?.ext?.set("javacppPlatform", "linux-x86_64")
println(parent?.ext?.get("javacppPlatform"))
true
}
enabled = true
}
}