Skip to content

Commit

Permalink
feat: add Apple Silicon targets
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed Jun 28, 2022
1 parent fe1a73d commit d1dc943
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,22 @@ kotlin {
iosArm64()
iosArm32()
iosX64()
iosSimulatorArm64()

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

tvosX64()
tvosSimulatorArm64()
tvosArm64()

watchosArm32()
watchosArm64()
watchosX64()
watchosX86()
watchosSimulatorArm64()

sourceSets {
val commonMain by getting {
Expand Down Expand Up @@ -112,14 +116,18 @@ kotlin {

val appleTargets = listOf(
"iosX64",
"iosSimulatorArm64",
"iosArm64",
"iosArm32",
"macosX64",
"macosArm64",
"tvosArm64",
"tvosX64",
"tvosSimulatorArm64",
"watchosArm32",
"watchosArm64",
"watchosX86",
"watchosSimulatorArm64",
"watchosX64"
)

Expand Down

0 comments on commit d1dc943

Please sign in to comment.