We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6fd498 commit 6a4cf13Copy full SHA for 6a4cf13
examples/kotlin-multiplatform/build.gradle
@@ -23,6 +23,7 @@ kotlin {
23
}
24
25
macosX64 { }
26
+ macosArm64 { }
27
linuxX64 { }
28
mingwX64 { }
29
@@ -47,6 +48,7 @@ kotlin {
47
48
dependsOn(commonMain)
49
50
macosX64Main.dependsOn(it)
51
+ macosArm64Main.dependsOn(it)
52
linuxX64Main.dependsOn(it)
53
mingwX64Main.dependsOn(it)
54
@@ -101,6 +103,7 @@ benchmark {
101
103
102
104
register("js")
105
register("macosX64")
106
+ register("macosArm64")
107
register("linuxX64")
108
register("mingwX64")
109
0 commit comments