Skip to content

Commit 17eb1da

Browse files
authored
More targets (#15)
1 parent 7dc6a95 commit 17eb1da

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

channel-event-bus/build.gradle.kts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,25 @@ kotlin {
3838
nodejs()
3939
}
4040

41+
// According to https://kotlinlang.org/docs/native-target-support.html
42+
// Tier 1: macosX64, macosArm64, iosSimulatorArm64, iosX64
43+
// Tier 2: linuxX64, linuxArm64,
44+
// watchosSimulatorArm64, watchosX64, watchosArm32, watchosArm64,
45+
// tvosSimulatorArm64, tvosX64, tvosArm64,
46+
// iosArm64
47+
// Tier 3: androidNativeArm32, androidNativeArm64, androidNativeX86, androidNativeX64,
48+
// mingwX64,
49+
// watchosDeviceArm64
50+
4151
iosArm64()
4252
iosX64()
4353
iosSimulatorArm64()
4454

4555
macosX64()
4656
macosArm64()
57+
mingwX64()
58+
linuxX64()
59+
linuxArm64()
4760

4861
tvosX64()
4962
tvosSimulatorArm64()
@@ -53,6 +66,12 @@ kotlin {
5366
watchosArm64()
5467
watchosX64()
5568
watchosSimulatorArm64()
69+
watchosDeviceArm64()
70+
71+
androidNativeArm32()
72+
androidNativeArm64()
73+
androidNativeX86()
74+
androidNativeX64()
5675

5776
sourceSets {
5877
commonMain {

0 commit comments

Comments
 (0)