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.
32 lines
780 B
32 lines
780 B
3 years ago
|
import org.jetbrains.compose.compose
|
||
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
||
|
|
||
|
plugins {
|
||
|
// __KOTLIN_COMPOSE_VERSION__
|
||
|
kotlin("multiplatform") version "1.5.0"
|
||
|
// __LATEST_COMPOSE_RELEASE_VERSION__
|
||
|
id("org.jetbrains.compose") version ("0.0.0-web-dev-13")
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
js(IR) {
|
||
|
browser()
|
||
|
binaries.executable()
|
||
|
}
|
||
|
sourceSets {
|
||
|
val jsMain by getting {
|
||
|
kotlin.srcDir("src/main/kotlin")
|
||
|
resources.srcDir("src/main/resources")
|
||
|
|
||
|
dependencies {
|
||
|
implementation(compose.web.core)
|
||
|
implementation(compose.runtime)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|