20 lines
438 B
Plaintext
20 lines
438 B
Plaintext
plugins {
|
|
org.openrndr.extra.convention.`kotlin-multiplatform`
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
all {
|
|
languageSettings {
|
|
optIn("kotlin.RequiresOptIn")
|
|
}
|
|
}
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val commonMain by getting {
|
|
dependencies {
|
|
api(libs.openrndr.event)
|
|
implementation(libs.kotlin.coroutines)
|
|
}
|
|
}
|
|
}
|
|
} |