File tree Expand file tree Collapse file tree 3 files changed +18
-12
lines changed Expand file tree Collapse file tree 3 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 11import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
22
33plugins {
4- kotlin(" jvm " )
4+ kotlin(" multiplatform " )
55 id(" org.jetbrains.compose" )
66 alias(libs.plugins.compose.compiler)
77}
88
9- @OptIn(org.jetbrains.compose.ExperimentalComposeLibrary ::class )
10- dependencies {
11- implementation(compose.desktop.currentOs)
9+ kotlin {
10+ jvm()
1211
13- implementation(compose.ui)
14- implementation(compose.runtime)
15- implementation(compose.foundation)
16- implementation(compose.material3)
17- implementation(compose.components.resources)
12+ sourceSets {
13+ @OptIn(org.jetbrains.compose.ExperimentalComposeLibrary ::class )
14+ jvmMain.dependencies {
15+ implementation(compose.desktop.currentOs)
1816
19- implementation(libs.decompose.decompose)
20- implementation(libs.decompose.extensions.compose)
17+ implementation(compose.ui)
18+ implementation(compose.runtime)
19+ implementation(compose.foundation)
20+ implementation(compose.material3)
21+ implementation(compose.components.resources)
2122
22- implementation(project(" :shared" ))
23+ implementation(libs.decompose.decompose)
24+ implementation(libs.decompose.extensions.compose)
25+
26+ implementation(project(" :shared" ))
27+ }
28+ }
2329}
2430
2531tasks.withType<KotlinCompile > {
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments