27 lines
472 B
Plaintext
27 lines
472 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
jvm {
|
|
testRuns["test"].executionTask.configure {
|
|
useJUnitPlatform()
|
|
}
|
|
}
|
|
js(IR) {
|
|
browser()
|
|
nodejs()
|
|
}
|
|
|
|
sourceSets {
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(libs.openrndr.application)
|
|
implementation(libs.openrndr.math)
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|