16 lines
258 B
Kotlin
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")
|
|
}
|