phantasmal-world/core/build.gradle.kts

51 lines
1.1 KiB
Plaintext
Raw Normal View History

plugins {
kotlin("multiplatform")
}
2020-12-06 04:48:26 +08:00
val coroutinesVersion: String by project.ext
val kotlinLoggingVersion: String by project.extra
val jvmVersion: String by project.extra
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
jvmTarget = jvmVersion
}
}
kotlin {
js {
browser {}
}
2020-10-28 05:55:05 +08:00
jvm()
sourceSets {
commonMain {
dependencies {
2020-12-06 04:48:26 +08:00
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
api("io.github.microutils:kotlin-logging:$kotlinLoggingVersion")
}
}
commonTest {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
2020-10-28 05:55:05 +08:00
getByName("jsTest") {
dependencies {
implementation(kotlin("test-js"))
}
}
2020-10-28 05:55:05 +08:00
getByName("jvmTest") {
dependencies {
implementation(kotlin("test-junit"))
}
}
}
}