2020-12-15 01:39:26 +08:00
|
|
|
plugins {
|
2021-07-25 02:13:02 +08:00
|
|
|
id("world.phantasmal.multiplatform")
|
2020-12-15 01:39:26 +08:00
|
|
|
kotlin("plugin.serialization")
|
|
|
|
}
|
|
|
|
|
2021-03-06 20:33:04 +08:00
|
|
|
val serializationVersion: String by project.extra
|
|
|
|
|
2020-12-15 01:39:26 +08:00
|
|
|
kotlin {
|
2021-03-06 20:33:04 +08:00
|
|
|
sourceSets {
|
2021-09-06 20:17:20 +08:00
|
|
|
configureEach {
|
|
|
|
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
|
|
|
}
|
2021-03-06 20:33:04 +08:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2021-07-25 23:24:42 +08:00
|
|
|
api(project(":psolib"))
|
2020-12-15 01:39:26 +08:00
|
|
|
|
2021-03-06 20:33:04 +08:00
|
|
|
api("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-15 01:39:26 +08:00
|
|
|
}
|