You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.0 KiB
84 lines
2.0 KiB
1 year ago
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||
|
|
||
|
plugins {
|
||
|
kotlin("multiplatform")
|
||
|
id("org.jetbrains.compose")
|
||
|
}
|
||
|
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenLocal()
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
jvm("desktop")
|
||
|
macosX64 {
|
||
|
binaries {
|
||
|
executable {
|
||
|
entryPoint = "main"
|
||
|
freeCompilerArgs += listOf(
|
||
|
"-linker-option", "-framework", "-linker-option", "Metal"
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
macosArm64 {
|
||
|
binaries {
|
||
|
executable {
|
||
|
entryPoint = "main"
|
||
|
freeCompilerArgs += listOf(
|
||
|
"-linker-option", "-framework", "-linker-option", "Metal"
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
val commonMain by getting {
|
||
|
dependencies {
|
||
|
implementation(compose.ui)
|
||
|
implementation(compose.foundation)
|
||
|
implementation(compose.material)
|
||
|
implementation(compose.runtime)
|
||
|
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
|
||
|
implementation(compose.components.resources)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
val desktopMain by getting {
|
||
|
dependencies {
|
||
|
implementation(compose.desktop.currentOs)
|
||
|
runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.7.1")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
val nativeMain by creating {
|
||
|
dependsOn(commonMain)
|
||
|
}
|
||
|
val macosMain by creating {
|
||
|
dependsOn(nativeMain)
|
||
|
}
|
||
|
val macosX64Main by getting {
|
||
|
dependsOn(macosMain)
|
||
|
}
|
||
|
val macosArm64Main by getting {
|
||
|
dependsOn(macosMain)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
compose.desktop {
|
||
|
application {
|
||
|
mainClass = "Main_desktopKt"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.withType<KotlinCompile> {
|
||
|
kotlinOptions.jvmTarget = "11"
|
||
|
}
|
||
|
|