import org.jetbrains.compose.desktop.application.dsl.TargetFormat plugins { kotlin("multiplatform") id("org.jetbrains.compose") } kotlin { jvm {} sourceSets { val jvmMain by getting { dependencies { implementation(compose.desktop.currentOs) implementation(project(":shared")) } } } } compose.desktop { application { mainClass = "org.jetbrains.codeviewer.MainKt" nativeDistributions { targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb) packageName = "ComposeCodeViewer" packageVersion = "1.0.0" windows { menu = true // see https://wixtoolset.org/documentation/manual/v3/howtos/general/generate_guids.html upgradeUuid = "AF792DA6-2EA3-495A-95E5-C3C6CBCB9948" } macOS { // Use -Pcompose.desktop.mac.sign=true to sign and notarize. bundleID = "com.jetbrains.compose.codeviewer" } } } }