26 lines
410 B
Plaintext
26 lines
410 B
Plaintext
plugins {
|
|
id("scientifik.mpp")
|
|
}
|
|
|
|
description = "IO module"
|
|
|
|
scientifik{
|
|
serialization = true
|
|
io = true
|
|
}
|
|
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
val commonMain by getting{
|
|
dependencies {
|
|
api(project(":dataforge-meta"))
|
|
}
|
|
}
|
|
val jsMain by getting{
|
|
dependencies{
|
|
api(npm("text-encoding"))
|
|
}
|
|
}
|
|
}
|
|
} |