kmath/test-utils/build.gradle.kts

14 lines
240 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")
id("space.kscience.gradle.native")
2022-06-14 16:27:32 +03:00
}
kotlin.sourceSets {
commonMain {
dependencies {
api(projects.kmath.kmathCore)
api(kotlin("test"))
}
}
}