forked from kscience/kmath
24 lines
326 B
Plaintext
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 {
|
|
// }
|
|
}
|
|
}
|