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.
|
|
|
import org.jetbrains.compose.compose
|
|
|
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
id("org.jetbrains.compose")
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(compose.desktop.currentOs)
|
|
|
|
implementation(compose.materialIconsExtended)
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.6.0")
|
|
|
|
}
|
|
|
|
|
|
|
|
compose.desktop {
|
|
|
|
application {
|
|
|
|
mainClass = "MainKt"
|
|
|
|
|
|
|
|
nativeDistributions {
|
|
|
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
|
|
|
packageName = "Notepad"
|
|
|
|
packageVersion = "1.0.0"
|
|
|
|
|
|
|
|
windows {
|
|
|
|
menu = true
|
|
|
|
// see https://wixtoolset.org/documentation/manual/v3/howtos/general/generate_guids.html
|
|
|
|
upgradeUuid = "61DAB35E-17CB-43B0-81D5-B30E1C0830FA"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|