mirror of
https://github.com/BetterAndroid/compose-multiplatform-template.git
synced 2025-09-05 10:15:24 +08:00
29 lines
533 B
Plaintext
29 lines
533 B
Plaintext
plugins {
|
|
autowire(libs.plugins.kotlin.multiplatform)
|
|
autowire(libs.plugins.jetbrains.compose)
|
|
}
|
|
|
|
group = property.project.groupName
|
|
|
|
kotlin {
|
|
jvm("desktop")
|
|
jvmToolchain(17)
|
|
sourceSets {
|
|
val desktopMain by getting {
|
|
dependencies {
|
|
implementation(projects.shared)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
compose.desktop {
|
|
application {
|
|
mainClass = "MainKt"
|
|
}
|
|
} |