Skip to content

Commit

Permalink
Added native tests
Browse files Browse the repository at this point in the history
  • Loading branch information
corneil committed Mar 16, 2024
1 parent b6fa3e9 commit 39c2268
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions gradle/platform.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,18 @@ kotlin {
}
}
if (useTarget['linux']) {
configureNative(linuxMain, linuxTest)
if (arch.arm64) {
configureNative(linuxArm64Main, linuxArm64Test)
} else if (arch.amd64) {
configureNative(linuxX64Main, linuxX64Test)
}
}
if (useTarget['mingw']) {
configureNative(mingwX64Main, mingwX64Test)
}
if (useTarget['macos']) {
configureNative(macosMain, macosTest)
configureNative(macosArm64Main, macosArm64Test)
configureNative(macosX64Main, macosX64Test)
}
}
}

0 comments on commit 39c2268

Please sign in to comment.