Skip to content

Commit

Permalink
Add linuxarm64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
thebehera authored Jan 1, 2024
1 parent 4535deb commit fdb070d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ kotlin {
macosX64()
macosArm64()
linuxX64()
linuxArm64()
ios()
iosSimulatorArm64()
tasks.getByName<KotlinNativeSimulatorTest>("iosSimulatorArm64Test") {
Expand Down Expand Up @@ -84,6 +85,8 @@ kotlin {
val macosArm64Test by getting
val linuxX64Main by getting
val linuxX64Test by getting
val linuxArm64Main by getting
val linuxArm64Test by getting
val iosMain by getting
val iosTest by getting
val iosSimulatorArm64Main by getting
Expand All @@ -100,10 +103,12 @@ kotlin {
val nativeMain by sourceSets.creating {
dependsOn(commonMain)
linuxX64Main.dependsOn(this)
linuxArm64Main.dependsOn(this)
}
val nativeTest by sourceSets.creating {
dependsOn(commonTest)
linuxX64Test.dependsOn(this)
linuxArm64Test.dependsOn(this)
}

val appleMain by sourceSets.creating {
Expand Down

0 comments on commit fdb070d

Please sign in to comment.