mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
38 lines
928 B
Kotlin
38 lines
928 B
Kotlin
import org.jetbrains.compose.compose
|
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
// __KOTLIN_COMPOSE_VERSION__
|
|
kotlin("jvm") version "1.5.10"
|
|
// __LATEST_COMPOSE_RELEASE_VERSION__
|
|
id("org.jetbrains.compose") version "0.4.0"
|
|
}
|
|
|
|
group = "me.user"
|
|
version = "1.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
|
|
}
|
|
|
|
dependencies {
|
|
implementation(compose.desktop.currentOs)
|
|
}
|
|
|
|
tasks.withType<KotlinCompile>() {
|
|
kotlinOptions.jvmTarget = "11"
|
|
}
|
|
|
|
compose.desktop {
|
|
application {
|
|
mainClass = "org.jetbrains.compose.demo.falling.MainKt"
|
|
nativeDistributions {
|
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
|
packageName = "falling_balls"
|
|
packageVersion = "1.0.0"
|
|
}
|
|
}
|
|
}
|