Files
orx/orx-gradient-descent/build.gradle.kts
Edwin Jakobs b7ba6f6daa Feature variants (#376)
Migrate from buildSrc to build-logic. Setup feature variants.
2025-09-17 10:03:02 +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)
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)
}
}
}
}