2019-03-06 18:15:30 +03:00
|
|
|
plugins {
|
2019-06-22 14:29:37 +03:00
|
|
|
id("scientifik.mpp")
|
2019-03-06 18:15:30 +03:00
|
|
|
}
|
|
|
|
|
2019-07-27 17:02:48 +03:00
|
|
|
description = "IO module"
|
2019-03-06 18:15:30 +03:00
|
|
|
|
2019-07-27 17:02:48 +03:00
|
|
|
scientifik{
|
|
|
|
serialization = true
|
|
|
|
io = true
|
|
|
|
}
|
2019-03-06 18:15:30 +03:00
|
|
|
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
val commonMain by getting{
|
|
|
|
dependencies {
|
|
|
|
api(project(":dataforge-meta"))
|
|
|
|
}
|
|
|
|
}
|
2019-07-27 17:02:48 +03:00
|
|
|
val jsMain by getting{
|
|
|
|
dependencies{
|
|
|
|
api(npm("text-encoding"))
|
2019-03-06 18:15:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|