File tree Expand file tree Collapse file tree 1 file changed +21
-8
lines changed Expand file tree Collapse file tree 1 file changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,25 @@ mavenPublicationsPom {
15
15
16
16
kotlin {
17
17
infra {
18
- target(" macosX64" )
19
- target(" iosX64" )
20
- target(" iosArm64" )
21
- target(" iosArm32" )
22
18
target(" linuxX64" )
23
19
target(" mingwX64" )
20
+
21
+ common(" darwin" ) {
22
+ target(" macosX64" )
23
+ target(" macosArm64" )
24
+ target(" iosX64" )
25
+ target(" iosArm64" )
26
+ target(" iosArm32" )
27
+ target(" iosSimulatorArm64" )
28
+ target(" watchosArm32" )
29
+ target(" watchosArm64" )
30
+ target(" watchosX86" )
31
+ target(" watchosX64" )
32
+ target(" watchosSimulatorArm64" )
33
+ target(" tvosArm64" )
34
+ target(" tvosX64" )
35
+ target(" tvosSimulatorArm64" )
36
+ }
24
37
}
25
38
26
39
jvm {
@@ -97,11 +110,11 @@ kotlin {
97
110
}
98
111
99
112
val nativeMain by getting {
100
- dependencies {
101
-
102
- }
113
+ dependsOn(commonMain.get())
114
+ }
115
+ val nativeTest by getting {
116
+ dependsOn(commonTest.get())
103
117
}
104
-
105
118
}
106
119
}
107
120
You can’t perform that action at this time.
0 commit comments