forked from kscience/kmath
21 lines
309 B
Plaintext
21 lines
309 B
Plaintext
plugins {
|
|
id("multiplatform-config")
|
|
}
|
|
|
|
val ioVersion: String by rootProject.extra
|
|
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":kmath-memory"))
|
|
}
|
|
}
|
|
// mingwMain {
|
|
// }
|
|
// mingwTest {
|
|
// }
|
|
}
|
|
}
|