2019-01-30 18:57:14 +03:00
|
|
|
plugins {
|
2022-08-01 18:12:57 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
|
|
|
id("space.kscience.gradle.native")
|
2019-01-30 18:57:14 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 11:45:31 +03:00
|
|
|
kscience{
|
|
|
|
useCoroutines()
|
|
|
|
}
|
2019-01-30 18:57:14 +03:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
2020-08-29 11:45:31 +03:00
|
|
|
commonMain{
|
2019-01-30 18:57:14 +03:00
|
|
|
dependencies {
|
|
|
|
api(project(":dataforge-meta"))
|
2019-08-07 19:28:44 +03:00
|
|
|
api(kotlin("reflect"))
|
2019-01-30 18:57:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-10 14:32:52 +03:00
|
|
|
}
|
2021-01-31 22:34:48 +03:00
|
|
|
|
|
|
|
readme{
|
2022-08-01 18:12:57 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
|
2021-01-31 22:34:48 +03:00
|
|
|
}
|