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.
|
|
|
// Add compose gradle plugin
|
|
|
|
// This project is autogenerated from ../web/samples/web-compose-bird
|
|
|
|
// In case you want modify code, please, modify it there.
|
|
|
|
plugins {
|
|
|
|
kotlin("multiplatform") version "1.5.21"
|
|
|
|
id("org.jetbrains.compose") version "0.5.0-build270"
|
|
|
|
}
|
|
|
|
group = "com.theapache64.composebird"
|
|
|
|
version = "1.0.0-alpha01"
|
|
|
|
|
|
|
|
// Add maven repositories
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
js(IR) {
|
|
|
|
browser()
|
|
|
|
binaries.executable()
|
|
|
|
}
|
|
|
|
sourceSets {
|
|
|
|
val jsMain by getting {
|
|
|
|
dependencies {
|
|
|
|
implementation(compose.web.core)
|
|
|
|
implementation(compose.runtime)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|