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

@@ -16,23 +16,17 @@ 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 {
implementation(libs.openrndr.application)
implementation(libs.openrndr.draw)
implementation(libs.kotlin.reflect)
api(shaderKotlin.kotlin)
}
dependsOn(shaderKotlin)
}
@Suppress("UNUSED_VARIABLE")
val jvmTest by getting {
dependencies {