kmath/kmath-core/build.gradle.kts
2019-04-23 15:13:10 +08:00

24 lines
326 B
Plaintext

plugins {
kotlin("multiplatform")
}
val ioVersion: String by rootProject.extra
kotlin {
jvm()
js()
sourceSets {
commonMain {
dependencies {
api(project(":kmath-memory"))
}
}
// mingwMain {
// }
// mingwTest {
// }
}
}