2020-10-11 05:48:38 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("multiplatform")
|
|
|
|
}
|
|
|
|
|
2021-03-06 20:33:04 +08:00
|
|
|
val jvmVersion: String by project.extra
|
|
|
|
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = jvmVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-11 05:48:38 +08:00
|
|
|
kotlin {
|
|
|
|
js {
|
|
|
|
browser {}
|
|
|
|
}
|
|
|
|
|
2020-12-20 08:22:27 +08:00
|
|
|
jvm()
|
|
|
|
|
2020-10-11 05:48:38 +08:00
|
|
|
sourceSets {
|
2021-03-19 01:58:50 +08:00
|
|
|
all {
|
|
|
|
languageSettings.useExperimentalAnnotation("kotlin.contracts.ExperimentalContracts")
|
|
|
|
}
|
|
|
|
|
2020-10-11 05:48:38 +08:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":core"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-common"))
|
|
|
|
implementation(kotlin("test-annotations-common"))
|
2020-10-15 07:19:12 +08:00
|
|
|
implementation(project(":test-utils"))
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-20 08:22:27 +08:00
|
|
|
getByName("jsTest") {
|
2020-10-11 05:48:38 +08:00
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-js"))
|
|
|
|
}
|
|
|
|
}
|
2020-12-20 08:22:27 +08:00
|
|
|
|
|
|
|
getByName("jvmTest") {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-junit"))
|
|
|
|
}
|
|
|
|
}
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
|
|
|
}
|