31 lines
450 B
Plaintext
31 lines
450 B
Plaintext
plugins {
|
|
id("scientifik.mpp")
|
|
}
|
|
|
|
description = "IO module"
|
|
|
|
scientifik{
|
|
withSerialization()
|
|
withIO()
|
|
}
|
|
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain{
|
|
dependencies {
|
|
api(project(":dataforge-context"))
|
|
}
|
|
}
|
|
jvmMain{
|
|
dependencies {
|
|
|
|
}
|
|
}
|
|
jsMain{
|
|
dependencies{
|
|
api(npm("text-encoding"))
|
|
}
|
|
}
|
|
}
|
|
} |