kmath/test-utils/build.gradle.kts

20 lines
259 B
Plaintext
Raw 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
}
kscience{
2023-02-03 19:32:53 +03:00
jvm()
js()
2022-09-04 20:59:30 +03:00
native()
// wasm()
2022-06-14 16:27:32 +03:00
}
kotlin.sourceSets {
commonMain {
dependencies {
api(projects.kmath.kmathCore)
api(kotlin("test"))
}
}
}