2022-07-16 21:34:19 +03:00
|
|
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
kotlin("multiplatform")
|
|
|
|
id("org.jetbrains.compose")
|
|
|
|
}
|
|
|
|
|
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
|
|
|
|
kotlin {
|
2023-03-15 15:24:23 +03:00
|
|
|
jvmToolchain(11)
|
2023-04-16 20:50:51 +03:00
|
|
|
jvm()
|
2022-07-16 21:34:19 +03:00
|
|
|
sourceSets {
|
|
|
|
val jvmMain by getting {
|
|
|
|
dependencies {
|
|
|
|
implementation(projects.mapsKtCompose)
|
2022-12-27 11:51:14 +03:00
|
|
|
implementation(projects.mapsKtGeojson)
|
2022-07-16 21:34:19 +03:00
|
|
|
implementation(compose.desktop.currentOs)
|
2022-10-12 15:03:02 +03:00
|
|
|
implementation("io.ktor:ktor-client-cio")
|
2022-07-16 21:34:19 +03:00
|
|
|
implementation("ch.qos.logback:logback-classic:1.2.11")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
val jvmTest by getting
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-06 10:03:38 +03:00
|
|
|
compose {
|
|
|
|
desktop {
|
|
|
|
application {
|
|
|
|
mainClass = "MainKt"
|
|
|
|
nativeDistributions {
|
|
|
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
|
|
|
packageName = "maps-compose-demo"
|
|
|
|
packageVersion = "1.0.0"
|
|
|
|
}
|
2022-07-16 21:34:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|