mirror of
https://github.com/stan220/gkj-binding-leak-poc.git
synced 2026-09-08 17:28:58 +00:00
Minimal repro for godot-kotlin-jvm non-RefCounted binding leak
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import godot.gradle.GodotLanguage
|
||||
|
||||
plugins {
|
||||
id("com.utopia-rise.godot-kotlin-jvm") version "0.16.2-4.6.3"
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvmToolchain(17)
|
||||
}
|
||||
|
||||
godot {
|
||||
languages.set(setOf(GodotLanguage.KOTLIN))
|
||||
javaVersion.set(17)
|
||||
godotProjectDirectory.set(file("."))
|
||||
registrationFilesDirectory.set(file("gdj"))
|
||||
}
|
||||
|
||||
tasks.named<Wrapper>("wrapper") {
|
||||
jarFile = file("bin/gradle/gradle-wrapper.jar")
|
||||
}
|
||||
Reference in New Issue
Block a user