summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gradle/configure-source-sets.gradle2
-rw-r--r--gradle/native-targets.gradle3
2 files changed, 4 insertions, 1 deletions
diff --git a/gradle/configure-source-sets.gradle b/gradle/configure-source-sets.gradle
index 532e2cae..e763580a 100644
--- a/gradle/configure-source-sets.gradle
+++ b/gradle/configure-source-sets.gradle
@@ -147,7 +147,7 @@ kotlin {
}
}
- def targetsWithoutTestRunners = ["linuxArm64"]
+ def targetsWithoutTestRunners = ["linuxArm64", "linuxArm32Hfp"]
configure(targets) {
// Configure additional binaries to run tests in the background
if (["macos", "linux", "mingw"].any { name.startsWith(it) && !targetsWithoutTestRunners.contains(name) }) {
diff --git a/gradle/native-targets.gradle b/gradle/native-targets.gradle
index 5b7f8a40..373aeba6 100644
--- a/gradle/native-targets.gradle
+++ b/gradle/native-targets.gradle
@@ -37,6 +37,9 @@ kotlin {
androidNativeX86()
androidNativeX64()
watchosDeviceArm64()
+
+ // Deprecated, but not removed
+ linuxArm32Hfp()
}
}
}