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.
27 lines
581 B
27 lines
581 B
2 years ago
|
plugins {
|
||
|
kotlin("multiplatform")
|
||
|
id("org.jetbrains.compose")
|
||
|
kotlin("plugin.serialization")
|
||
|
}
|
||
|
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
kotlin {
|
||
|
jvm("desktop")
|
||
|
|
||
|
sourceSets {
|
||
|
val commonMain by getting {
|
||
|
dependencies {
|
||
|
implementation(compose.runtime)
|
||
|
implementation(compose.foundation)
|
||
|
}
|
||
|
}
|
||
|
val desktopMain by getting {
|
||
|
dependencies {
|
||
|
implementation("io.ktor:ktor-client-cio:2.2.1")
|
||
|
implementation(compose.desktop.common)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|