37 lines
1023 B
Plaintext
37 lines
1023 B
Plaintext
plugins {
|
|
org.openrndr.extra.convention.`kotlin-multiplatform`
|
|
}
|
|
|
|
kotlin {
|
|
jvm {
|
|
testRuns["test"].executionTask {
|
|
useJUnitPlatform {
|
|
includeEngines("spek2")
|
|
}
|
|
}
|
|
}
|
|
sourceSets {
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(project(":orx-parameters"))
|
|
implementation(project(":orx-shader-phrases"))
|
|
implementation(libs.openrndr.application)
|
|
implementation(libs.openrndr.draw)
|
|
implementation(libs.openrndr.filter)
|
|
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)
|
|
}
|
|
}
|
|
}
|
|
} |