Skip to content

Commit

Permalink
Merge pull request #1 from eloyleonardo/main
Browse files Browse the repository at this point in the history
Add graalNative task
  • Loading branch information
caoccao authored May 5, 2024
2 parents 76a788f + 0eee53e commit 2a97a80
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion console/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ object Config {
plugins {
application
kotlin("jvm") version "1.9.21"
id("org.graalvm.buildtools.native") version "0.10.1"
}

repositories {
Expand Down Expand Up @@ -129,4 +130,12 @@ tasks.test {

kotlin {
jvmToolchain(17)
}
}

graalvmNative {
binaries {
named("main") {
fallback.set(true)
}
}
}

0 comments on commit 2a97a80

Please sign in to comment.