kmath/kmath-histograms/build.gradle.kts

10 lines
207 B
Plaintext
Raw Normal View History

2019-02-13 18:21:51 +03:00
plugins {
`multiplatform-config`
2019-02-13 18:21:51 +03:00
}
// Just an example how we can collapse nested DSL for simple declarations
kotlin.sourceSets.commonMain {
dependencies {
api(project(":kmath-core"))
2019-02-13 18:21:51 +03:00
}
2019-04-23 22:05:47 +03:00
}