File tree Expand file tree Collapse file tree 1 file changed +18
-6
lines changed Expand file tree Collapse file tree 1 file changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,25 @@ repositories {
8
8
9
9
kotlin {
10
10
infra {
11
- target(' macosX64' )
12
11
target(' linuxX64' )
13
12
target(' mingwX64' )
13
+
14
+ common(" darwin" ) {
15
+ target(" macosX64" )
16
+ target(" macosArm64" )
17
+ target(" iosX64" )
18
+ target(" iosArm64" )
19
+ target(" iosArm32" )
20
+ target(" iosSimulatorArm64" )
21
+ target(" watchosArm32" )
22
+ target(" watchosArm64" )
23
+ target(" watchosX86" )
24
+ target(" watchosX64" )
25
+ target(" watchosSimulatorArm64" )
26
+ target(" tvosArm64" )
27
+ target(" tvosX64" )
28
+ target(" tvosSimulatorArm64" )
29
+ }
14
30
}
15
31
16
32
jvm {
@@ -30,8 +46,6 @@ kotlin {
30
46
resources. srcDirs = [" $it . name /resources" ]
31
47
languageSettings {
32
48
progressiveMode = true
33
- useExperimentalAnnotation(" kotlin.Experimental" )
34
- useExperimentalAnnotation(' kotlin.ExperimentalUnsignedTypes' )
35
49
}
36
50
}
37
51
@@ -64,9 +78,7 @@ kotlin {
64
78
}
65
79
66
80
nativeMain {
67
- dependsOn commonMain
68
- dependencies {
69
- }
81
+ dependsOn(commonMain)
70
82
}
71
83
}
72
84
}
You can’t perform that action at this time.
0 commit comments