2020-07-26 07:17:47 +03:00
|
|
|
plugins { id("scientifik.mpp") }
|
2020-06-12 10:40:59 +03:00
|
|
|
|
|
|
|
kotlin.sourceSets {
|
2020-06-16 14:52:02 +03:00
|
|
|
// all {
|
|
|
|
// languageSettings.apply{
|
|
|
|
// enableLanguageFeature("NewInference")
|
|
|
|
// }
|
|
|
|
// }
|
2020-06-12 10:40:59 +03:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-core"))
|
2020-07-27 19:06:28 +03:00
|
|
|
implementation("com.github.h0tk3y.betterParse:better-parse:0.4.0")
|
2020-06-12 10:40:59 +03:00
|
|
|
}
|
|
|
|
}
|
2020-06-13 20:24:10 +03:00
|
|
|
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
|
|
|
implementation("org.ow2.asm:asm:8.0.1")
|
|
|
|
implementation("org.ow2.asm:asm-commons:8.0.1")
|
|
|
|
implementation(kotlin("reflect"))
|
2020-06-12 16:56:58 +03:00
|
|
|
}
|
|
|
|
}
|
2020-06-12 10:40:59 +03:00
|
|
|
}
|