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