Skip to content

Commit

Permalink
Add macosArm64 target to :examples:kotlin-multiplatform project
Browse files Browse the repository at this point in the history
  • Loading branch information
qurbonzoda committed Oct 18, 2021
1 parent a6fd498 commit 6a4cf13
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/kotlin-multiplatform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ kotlin {
}

macosX64 { }
macosArm64 { }
linuxX64 { }
mingwX64 { }

Expand All @@ -47,6 +48,7 @@ kotlin {
dependsOn(commonMain)

macosX64Main.dependsOn(it)
macosArm64Main.dependsOn(it)
linuxX64Main.dependsOn(it)
mingwX64Main.dependsOn(it)
}
Expand Down Expand Up @@ -101,6 +103,7 @@ benchmark {
}
register("js")
register("macosX64")
register("macosArm64")
register("linuxX64")
register("mingwX64")
}
Expand Down

0 comments on commit 6a4cf13

Please sign in to comment.