mirror of https://github.com/sbt/sbt.git
Adjust native image setting
This commit is contained in:
parent
4b04399219
commit
5096cc1829
|
|
@ -1176,7 +1176,13 @@ lazy val sbtClientProj = (project in file("client"))
|
|||
nativeImageReady := { () =>
|
||||
()
|
||||
},
|
||||
nativeImageInstalled := true,
|
||||
if (isArmArchitecture)
|
||||
Seq(
|
||||
nativeImageVersion := "23.0",
|
||||
nativeImageJvm := "graalvm-java23",
|
||||
)
|
||||
else Nil,
|
||||
nativeImageInstalled := !isArmArchitecture,
|
||||
nativeImageOutput := {
|
||||
val outputDir = (target.value / "bin").toPath
|
||||
if (!Files.exists(outputDir)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue