28 lines
696 B
Plaintext
28 lines
696 B
Plaintext
plugins {
|
|
org.openrndr.extra.convention.`kotlin-multiplatform`
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(libs.openrndr.application)
|
|
implementation(libs.openrndr.math)
|
|
implementation(libs.kotlin.reflect)
|
|
}
|
|
}
|
|
|
|
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val jvmTest by getting {
|
|
dependencies {
|
|
implementation(libs.kluent)
|
|
implementation(libs.spek.dsl)
|
|
runtimeOnly(libs.spek.junit5)
|
|
runtimeOnly(libs.kotlin.reflect)
|
|
|
|
}
|
|
}
|
|
}
|
|
} |