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

41 lines
1.1 KiB
Plaintext

plugins {
id("org.openrndr.extra.convention.kotlin-multiplatform")
alias(libs.plugins.kotest.multiplatform)
}
kotlin {
jvm {
testRuns["test"].executionTask {
useJUnitPlatform {
}
}
}
sourceSets {
val commonMain by getting {
dependencies {
implementation(project(":orx-parameters"))
implementation(project(":orx-shader-phrases"))
implementation(openrndr.application.core)
implementation(openrndr.draw)
implementation(openrndr.filter)
implementation(sharedLibs.kotlin.reflect)
}
}
val commonTest by getting {
dependencies {
implementation(sharedLibs.kotest.assertions)
implementation(sharedLibs.kotest.framework.engine)
}
}
val jvmTest by getting {
dependencies {
implementation(sharedLibs.kotest.assertions)
implementation(sharedLibs.kotest.framework.engine)
runtimeOnly(sharedLibs.kotlin.reflect)
}
}
}
}