mirror of
https://github.com/stan220/godot-kotlin-project-template.git
synced 2026-09-08 16:28:57 +00:00
25 lines
500 B
Kotlin
25 lines
500 B
Kotlin
plugins {
|
|
id("com.utopia-rise.godot-kotlin-jvm") version "0.9.0-4.2.2"
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
godot {
|
|
registrationFileBaseDir.set(projectDir.resolve("scripts"))
|
|
isRegistrationFileHierarchyEnabled.set(true)
|
|
|
|
// To enable Android Export.
|
|
//isAndroidExportEnabled.set(true)
|
|
|
|
// To enable iOS export and Graal Native Image export.
|
|
//isGraalNativeImageExportEnabled.set(true)
|
|
}
|
|
|
|
kotlin.sourceSets.main {
|
|
kotlin.srcDirs("demo")
|
|
}
|