Files
orx/orx-kdtree/build.gradle.kts
2025-09-20 06:17:24 +02:00

24 lines
505 B
Plaintext

plugins {
id("org.openrndr.extra.convention.kotlin-multiplatform")
}
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(openrndr.application.core)
api(openrndr.math)
implementation(sharedLibs.kotlin.coroutines)
api(openrndr.utils)
}
}
}
}
//tasks.withType<KotlinCompile> {
// kotlinOptions.freeCompilerArgs = listOf("-opt-in=kotlin.RequiresOptIn")
//}