52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
import ScreenshotsHelper.collectScreenshots
|
|
|
|
plugins {
|
|
org.openrndr.extra.convention.`kotlin-multiplatform`
|
|
}
|
|
|
|
kotlin {
|
|
jvm {
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val demo by compilations.getting {
|
|
// TODO: Move demos to /jvmDemo
|
|
defaultSourceSet {
|
|
kotlin.srcDir("src/demo/kotlin")
|
|
}
|
|
collectScreenshots { }
|
|
}
|
|
testRuns["test"].executionTask {
|
|
useJUnitPlatform {
|
|
includeEngines("spek2")
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(libs.openrndr.math)
|
|
implementation(libs.openrndr.shape)
|
|
implementation(libs.openrndr.draw)
|
|
implementation(project(":orx-hash-grid"))
|
|
}
|
|
}
|
|
|
|
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val jvmTest by getting {
|
|
dependencies {
|
|
implementation(libs.spek.dsl)
|
|
runtimeOnly(libs.spek.junit5)
|
|
runtimeOnly(libs.kotlin.reflect)
|
|
}
|
|
}
|
|
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val jvmDemo by getting {
|
|
dependencies {
|
|
implementation(project(":orx-hash-grid"))
|
|
}
|
|
}
|
|
}
|
|
} |