kmath/kmath-core/build.gradle.kts

23 lines
340 B
Plaintext
Raw Normal View History

2019-01-26 19:38:18 +03:00
plugins {
kotlin("multiplatform")
}
2019-02-12 11:58:58 +03:00
val ioVersion: String by rootProject.extra
2019-01-26 19:38:18 +03:00
kotlin {
2019-02-12 11:58:58 +03:00
jvm()
2019-01-26 19:38:18 +03:00
js()
sourceSets {
val commonMain by getting {
dependencies {
2019-02-20 12:54:39 +03:00
api(project(":kmath-memory"))
2019-01-26 19:38:18 +03:00
}
}
// mingwMain {
// }
// mingwTest {
// }
}
}