|
|
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
id("org.jetbrains.compose")
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// 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
|
|
|
|
implementation(compose.desktop.currentOs)
|
|
|
|
|
|
|
|
// Include the Test API
|
|
|
|
// compileOnly instead of testImplementation for checking compilation of the tutorials
|
|
|
|
compileOnly(compose.desktop.uiTestJUnit4)
|
|
|
|
}
|
|
|
|
|
|
|
|
compose.desktop {
|
|
|
|
application {
|
|
|
|
mainClass = "MainKt"
|
|
|
|
|
|
|
|
nativeDistributions {
|
|
|
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
|
|
|
packageName = "KotlinJvmComposeDesktopApplication"
|
|
|
|
packageVersion = "1.0.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|