Skip to content

Commit

Permalink
More targets (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 authored Dec 3, 2023
1 parent 7dc6a95 commit 17eb1da
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions channel-event-bus/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,25 @@ kotlin {
nodejs()
}

// According to https://kotlinlang.org/docs/native-target-support.html
// Tier 1: macosX64, macosArm64, iosSimulatorArm64, iosX64
// Tier 2: linuxX64, linuxArm64,
// watchosSimulatorArm64, watchosX64, watchosArm32, watchosArm64,
// tvosSimulatorArm64, tvosX64, tvosArm64,
// iosArm64
// Tier 3: androidNativeArm32, androidNativeArm64, androidNativeX86, androidNativeX64,
// mingwX64,
// watchosDeviceArm64

iosArm64()
iosX64()
iosSimulatorArm64()

macosX64()
macosArm64()
mingwX64()
linuxX64()
linuxArm64()

tvosX64()
tvosSimulatorArm64()
Expand All @@ -53,6 +66,12 @@ kotlin {
watchosArm64()
watchosX64()
watchosSimulatorArm64()
watchosDeviceArm64()

androidNativeArm32()
androidNativeArm64()
androidNativeX86()
androidNativeX64()

sourceSets {
commonMain {
Expand Down

0 comments on commit 17eb1da

Please sign in to comment.