31 lines
619 B
Plaintext
31 lines
619 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
id("org.jetbrains.compose")
|
|
}
|
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
kotlin {
|
|
jvm()
|
|
jvmToolchain(11)
|
|
sourceSets {
|
|
val jvmMain by getting {
|
|
dependencies {
|
|
implementation(projects.mapsKtScheme)
|
|
implementation(projects.trajectoryKt)
|
|
implementation(compose.desktop.currentOs)
|
|
implementation(spclibs.logback.classic)
|
|
}
|
|
}
|
|
val jvmTest by getting
|
|
}
|
|
}
|
|
|
|
compose {
|
|
desktop {
|
|
application {
|
|
mainClass = "MainKt"
|
|
}
|
|
}
|
|
}
|