You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
import org.jetbrains.compose.gradle.standardConf |
|
|
|
plugins { |
|
kotlin("multiplatform") |
|
id("org.jetbrains.compose") |
|
} |
|
|
|
|
|
kotlin { |
|
jvm() |
|
js(IR) { |
|
browser() { |
|
testTask { |
|
useKarma { |
|
standardConf() |
|
} |
|
} |
|
} |
|
binaries.executable() |
|
} |
|
|
|
sourceSets { |
|
val commonMain by getting { |
|
dependencies { |
|
implementation(compose.runtime) |
|
implementation(libs.kotlinx.coroutines.core) |
|
} |
|
} |
|
|
|
val jsMain by getting { |
|
languageSettings { |
|
optIn("org.jetbrains.compose.web.internal.runtime.ComposeWebInternalApi") |
|
} |
|
dependencies { |
|
api(project(":internal-html-core-runtime")) |
|
} |
|
} |
|
|
|
val jsTest by getting { |
|
languageSettings { |
|
optIn("org.jetbrains.compose.web.internal.runtime.ComposeWebInternalApi") |
|
optIn("org.jetbrains.compose.web.testutils.ComposeWebExperimentalTestsApi") |
|
} |
|
dependencies { |
|
implementation(project(":html-test-utils")) |
|
implementation(kotlin("test-js")) |
|
} |
|
} |
|
|
|
val jvmMain by getting { |
|
dependencies { |
|
implementation(compose.desktop.currentOs) |
|
} |
|
} |
|
} |
|
}
|
|
|