Skip to content

Commit

Permalink
Add iosSimulatorArm64 and macosArm64 targets
Browse files Browse the repository at this point in the history
Closes #71
  • Loading branch information
dimsuz committed Feb 8, 2022
1 parent 9ced7ac commit fe30193
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,11 @@ subprojects {
}

ios()
iosSimulatorArm64()
linuxX64()
mingwX64()
macosX64()
macosArm64()
}
}

Expand Down
8 changes: 8 additions & 0 deletions kotlin-result/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,21 @@ kotlin {
dependsOn(nativeMain)
}

val macosArm64Main by getting {
dependsOn(nativeMain)
}

val iosX64Main by getting {
dependsOn(nativeMain)
}

val iosArm64Main by getting {
dependsOn(nativeMain)
}

val iosSimulatorArm64Main by getting {
dependsOn(nativeMain)
}
}
}

Expand Down

0 comments on commit fe30193

Please sign in to comment.