Skip to content

Commit

Permalink
Add other Darwin K/N targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Abduqodiri Qurbonzoda authored and qurbonzoda committed Dec 27, 2021
1 parent 3eb42d3 commit 7fe606a
Showing 1 changed file with 21 additions and 8 deletions.
29 changes: 21 additions & 8 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,25 @@ mavenPublicationsPom {

kotlin {
infra {
target("macosX64")
target("iosX64")
target("iosArm64")
target("iosArm32")
target("linuxX64")
target("mingwX64")

common("darwin") {
target("macosX64")
target("macosArm64")
target("iosX64")
target("iosArm64")
target("iosArm32")
target("iosSimulatorArm64")
target("watchosArm32")
target("watchosArm64")
target("watchosX86")
target("watchosX64")
target("watchosSimulatorArm64")
target("tvosArm64")
target("tvosX64")
target("tvosSimulatorArm64")
}
}

jvm {
Expand Down Expand Up @@ -97,11 +110,11 @@ kotlin {
}

val nativeMain by getting {
dependencies {

}
dependsOn(commonMain.get())
}
val nativeTest by getting {
dependsOn(commonTest.get())
}

}
}

Expand Down

0 comments on commit 7fe606a

Please sign in to comment.