forked from kscience/kmath
23 lines
340 B
Plaintext
23 lines
340 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
}
|
|
|
|
val ioVersion: String by rootProject.extra
|
|
|
|
|
|
kotlin {
|
|
jvm()
|
|
js()
|
|
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
api(project(":kmath-memory"))
|
|
}
|
|
}
|
|
// mingwMain {
|
|
// }
|
|
// mingwTest {
|
|
// }
|
|
}
|
|
} |