mirror of
https://github.com/utopia-rise/godot-kotlin-project-template.git
synced 2025-03-19 13:50:36 -06:00
24 lines
500 B
Kotlin
24 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")
|
|
}
|