26 lines
492 B
Kotlin
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"
|
|
}
|
|
}
|