mirror of
https://github.com/utopia-rise/godot-kotlin-project-template.git
synced 2025-01-10 23:10:53 -07:00
25 lines
500 B
Text
25 lines
500 B
Text
|
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")
|
||
|
}
|