File tree 2 files changed +30
-2
lines changed
2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -77,11 +77,36 @@ kotlin {
77
77
nodejs()
78
78
}
79
79
80
+ // Tier 1
81
+ macosX64()
82
+ macosArm64()
83
+ iosSimulatorArm64()
84
+ iosX64()
85
+ iosArm64()
86
+
87
+ // Tier 2
80
88
linuxX64()
81
89
linuxArm64()
90
+ watchosSimulatorArm64()
91
+ watchosX64()
92
+ watchosArm32()
93
+ watchosArm64()
94
+ tvosSimulatorArm64()
95
+ tvosX64()
96
+ tvosArm64()
97
+
98
+ // Tier 3
82
99
mingwX64()
83
- macosX64()
84
- macosArm64()
100
+ androidNativeArm32()
101
+ androidNativeArm64()
102
+ androidNativeX86()
103
+ androidNativeX64()
104
+ watchosDeviceArm64()
105
+
106
+ // Deprecated.
107
+ // Should follow the same route as official Kotlin libraries
108
+ @Suppress(" DEPRECATION" )
109
+ linuxArm32Hfp()
85
110
86
111
sourceSets {
87
112
commonTest {
Original file line number Diff line number Diff line change @@ -10,3 +10,6 @@ org.gradle.configuration-cache = true
10
10
# Kotlin settings
11
11
# ########################
12
12
kotlin.code.style = official
13
+
14
+ # Kotlin/Native
15
+ kotlin.native.enableKlibsCrossCompilation = true
You can’t perform that action at this time.
0 commit comments