kmath/test-utils/build.gradle.kts

20 lines
258 B
Plaintext
Raw Permalink Normal View History

2022-06-14 16:27:32 +03:00
plugins {
2022-07-29 15:58:02 +03:00
id("space.kscience.gradle.mpp")
2022-09-04 20:59:30 +03:00
}
2024-03-27 09:11:12 +03:00
kscience {
2023-02-03 19:32:53 +03:00
jvm()
js()
2022-09-04 20:59:30 +03:00
native()
2023-04-09 10:55:58 +03:00
wasm()
2022-06-14 16:27:32 +03:00
}
kotlin.sourceSets {
commonMain {
dependencies {
api(projects.kmath.kmathCore)
api(kotlin("test"))
}
}
}