Files
orx/orx-property-watchers/build.gradle.kts
Edwin Jakobs 23247e5044 Fix tests
2023-03-18 20:59:04 +01:00

32 lines
756 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(libs.openrndr.application)
implementation(libs.openrndr.math)
implementation(libs.kotlin.reflect)
}
}
@Suppress("UNUSED_VARIABLE")
val jvmTest by getting {
dependencies {
implementation(libs.kluent)
runtimeOnly(libs.kotlin.reflect)
}
}
}
}