mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
42 lines
848 B
Plaintext
42 lines
848 B
Plaintext
![]() |
plugins {
|
||
|
kotlin("multiplatform")
|
||
|
}
|
||
|
|
||
|
val kotlinLoggingVersion: String by project.extra
|
||
|
|
||
|
kotlin {
|
||
|
js {
|
||
|
browser()
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
all {
|
||
|
languageSettings.useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
|
||
|
}
|
||
|
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
api(project(":core"))
|
||
|
api("io.github.microutils:kotlin-logging:$kotlinLoggingVersion")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
commonTest {
|
||
|
dependencies {
|
||
|
implementation(kotlin("test-common"))
|
||
|
implementation(kotlin("test-annotations-common"))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
val jsTest by getting {
|
||
|
dependencies {
|
||
|
implementation(kotlin("test-js"))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.register("test") {
|
||
|
dependsOn("allTests")
|
||
|
}
|