Files
AndroidJetpack/haze/sample/desktop/build.gradle.kts
T
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

26 lines
492 B
Kotlin

// Copyright 2023, Christopher Banes and the Haze project contributors
// SPDX-License-Identifier: Apache-2.0
plugins {
id("dev.chrisbanes.kotlin.multiplatform")
id("dev.chrisbanes.compose")
}
kotlin {
sourceSets {
val jvmMain by getting {
dependencies {
implementation(projects.sample.shared)
implementation(compose.desktop.currentOs)
}
}
}
}
compose.desktop {
application {
mainClass = "dev.chrisbanes.haze.sample.desktop.MainKt"
}
}