kmath/kmath-histograms/build.gradle.kts

31 lines
673 B
Plaintext
Raw Normal View History

2019-02-13 18:21:51 +03:00
plugins {
2019-04-17 12:24:06 +03:00
id("multiplatform-config")
2019-02-13 18:21:51 +03:00
}
kotlin {
sourceSets {
2019-04-17 12:24:06 +03:00
commonMain {
2019-02-13 18:21:51 +03:00
dependencies {
api(project(":kmath-core"))
}
}
2019-04-17 12:24:06 +03:00
commonTest {
2019-02-13 18:21:51 +03:00
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
jvmTest {
2019-02-13 18:21:51 +03:00
dependencies {
implementation(kotlin("test"))
implementation(kotlin("test-junit"))
}
}
jsTest {
2019-02-13 18:21:51 +03:00
dependencies {
implementation(kotlin("test-js"))
}
}
}
2019-04-17 12:24:06 +03:00
}