Files
orx/orx-property-watchers/build.gradle.kts
2025-09-20 06:17:24 +02:00

35 lines
821 B
Plaintext

plugins {
id("org.openrndr.extra.convention.kotlin-multiplatform")
}
kotlin {
jvm {
testRuns["test"].executionTask {
useJUnitPlatform {
}
}
}
sourceSets {
@Suppress("UNUSED_VARIABLE")
val commonMain by getting {
dependencies {
implementation(openrndr.application.core)
implementation(openrndr.math)
implementation(sharedLibs.kotlin.reflect)
}
}
val jvmDemo by getting {
dependencies {
implementation(project(":orx-color"))
}
}
@Suppress("UNUSED_VARIABLE")
val jvmTest by getting {
dependencies {
runtimeOnly(sharedLibs.kotlin.reflect)
}
}
}
}