Skip to content

Commit

Permalink
Add macOS native targets (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdgr8 authored Jul 18, 2023
1 parent 9210139 commit 8d0620a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions paging-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ plugins {
kotlin {
ios()
iosSimulatorArm64()
macosArm64()
macosX64()
js(IR) {
browser()
}
Expand Down Expand Up @@ -58,6 +60,12 @@ kotlin {
val iosSimulatorArm64Main by getting {
dependsOn(iosMain)
}
val macosArm64Main by getting {
dependsOn(nativeMain)
}
val macosX64Main by getting {
dependsOn(nativeMain)
}
val linuxX64Main by getting {
dependsOn(nativeMain)
}
Expand Down

0 comments on commit 8d0620a

Please sign in to comment.