Upgrade to Kotlin 1.9.20, Nebula release 18.0.3

This commit is contained in:
Edwin Jakobs
2023-11-02 15:16:01 +01:00
parent 5ccb6f2170
commit a8e23ad651
5 changed files with 8 additions and 29 deletions

View File

@@ -19,11 +19,8 @@ kotlin {
}
}
kotlin.sourceSets.getByName("commonMain").kotlin.srcDir(embedShaders.outputDir)
sourceSets {
val shaderKotlin by creating {
this.kotlin.srcDir(embedShaders.outputDir)
}
@Suppress("UNUSED_VARIABLE")
val commonMain by getting {
dependencies {
@@ -33,12 +30,9 @@ kotlin {
implementation(project(":orx-hash-grid"))
implementation(project(":orx-parameters"))
implementation(project(":orx-shader-phrases"))
api(shaderKotlin.kotlin)
}
dependsOn(shaderKotlin)
}
@Suppress("UNUSED_VARIABLE")
val jvmTest by getting {
dependencies {