mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
26 lines
420 B
Plaintext
26 lines
420 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
val serializationVersion: String by project.extra
|
|
|
|
kotlin {
|
|
js {
|
|
browser {
|
|
}
|
|
}
|
|
|
|
jvm()
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":lib"))
|
|
|
|
api("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion")
|
|
}
|
|
}
|
|
}
|
|
}
|