mirror of
https://github.com/fankes/pagecurl-multiplatform.git
synced 2025-09-04 01:35:36 +08:00
29 lines
571 B
Plaintext
29 lines
571 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.samples.shared)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
compose.desktop {
|
|
application {
|
|
mainClass = "${property.project.groupName}.MainKt"
|
|
}
|
|
} |