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.
33 lines
895 B
33 lines
895 B
4 years ago
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
||
4 years ago
|
|
||
|
plugins {
|
||
3 years ago
|
kotlin("jvm")
|
||
|
id("org.jetbrains.compose")
|
||
4 years ago
|
}
|
||
|
|
||
|
repositories {
|
||
4 years ago
|
mavenCentral()
|
||
4 years ago
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
3 years ago
|
google()
|
||
4 years ago
|
}
|
||
|
|
||
|
dependencies {
|
||
3 years ago
|
// Note, if you develop a library, you should use compose.desktop.common.
|
||
|
// compose.desktop.currentOs should be used in launcher-sourceSet
|
||
|
// (in a separate module for demo project and in testMain).
|
||
|
// With compose.desktop.common you will also lose @Preview functionality
|
||
3 years ago
|
implementation(compose.desktop.currentOs)
|
||
4 years ago
|
}
|
||
|
|
||
4 years ago
|
compose.desktop {
|
||
|
application {
|
||
|
mainClass = "MainKt"
|
||
|
|
||
|
nativeDistributions {
|
||
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
||
|
packageName = "KotlinJvmComposeDesktopApplication"
|
||
4 years ago
|
packageVersion = "1.0.0"
|
||
4 years ago
|
}
|
||
|
}
|
||
4 years ago
|
}
|