15 lines
335 B
Plaintext
15 lines
335 B
Plaintext
plugins {
|
|
id("org.openrndr.extra.convention.kotlin-multiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(openrndr.application.core)
|
|
implementation(openrndr.math)
|
|
}
|
|
}
|
|
}
|
|
} |