mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
37 lines
695 B
Plaintext
37 lines
695 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
}
|
|
|
|
val kotlinLoggingVersion: String by project.extra
|
|
|
|
kotlin {
|
|
js {
|
|
browser {}
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
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")
|
|
}
|