Files
jlibghostty/examples/gradle-consumer/build.gradle.kts
Gregor Lohaus be0c0bb321 wip
2026-05-27 14:04:26 +02:00

16 lines
258 B
Kotlin

plugins {
application
}
dependencies {
implementation("dev.jlibghostty:jlibghostty:0.1.0-SNAPSHOT")
}
application {
mainClass.set("example.Main")
}
tasks.withType<JavaExec>().configureEach {
jvmArgs("--enable-native-access=ALL-UNNAMED")
}