Skip to content

Commit

Permalink
build: Add ARM cpu targets (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
dobe authored Jun 21, 2024
1 parent 2e5d985 commit b90ea21
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ Currently, artifacts for the following platforms are supported:

The supported Native targets are (following the Kotlin/Native [target support guidelines][1]):

| Tier 1 | Tier 2 | Tier 3 |
|:---------|:---------|:---------|
| macosX64 | linuxX64 | mingwX64 |
| Tier 1 | Tier 2 | Tier 3 |
|:------------------|:------------------|:---------|
| macosX64 | linuxX64 | mingwX64 |
| macosArm64 | linuxArm64 | |

[1]: https://kotlinlang.org/docs/native-target-support.html
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ kotlin {
}

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

sourceSets {
commonTest {
Expand Down

0 comments on commit b90ea21

Please sign in to comment.