mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
45 lines
862 B
Plaintext
45 lines
862 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
}
|
|
|
|
val coroutinesVersion: String by project.ext
|
|
|
|
val jvmVersion: String by project.extra
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = jvmVersion
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
js {
|
|
browser {}
|
|
}
|
|
|
|
jvm()
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":core"))
|
|
api(kotlin("test-common"))
|
|
api(kotlin("test-annotations-common"))
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
|
}
|
|
}
|
|
|
|
named("jsMain") {
|
|
dependencies {
|
|
api(kotlin("test-js"))
|
|
}
|
|
}
|
|
|
|
named("jvmMain") {
|
|
dependencies {
|
|
api(kotlin("test"))
|
|
}
|
|
}
|
|
}
|
|
}
|