Add iosSimulatorArm64 and macosArm64 targets

Closes #71
This commit is contained in:
Dmitry Suzdalev 2022-02-08 17:33:02 +02:00
parent 9ced7ac483
commit fe30193d7c
2 changed files with 10 additions and 0 deletions

View File

@ -70,9 +70,11 @@ subprojects {
}
ios()
iosSimulatorArm64()
linuxX64()
mingwX64()
macosX64()
macosArm64()
}
}

View File

@ -61,6 +61,10 @@ kotlin {
dependsOn(nativeMain)
}
val macosArm64Main by getting {
dependsOn(nativeMain)
}
val iosX64Main by getting {
dependsOn(nativeMain)
}
@ -68,6 +72,10 @@ kotlin {
val iosArm64Main by getting {
dependsOn(nativeMain)
}
val iosSimulatorArm64Main by getting {
dependsOn(nativeMain)
}
}
}