From 8b8c4f8324c19f0219015b60974111dffe1e0376 Mon Sep 17 00:00:00 2001 From: Leonid Startsev Date: Thu, 16 Nov 2023 16:51:59 +0100 Subject: Bring back linuxArm32Hfp target because it is deprecated, but not removed yet. (#2505) --- gradle/configure-source-sets.gradle | 2 +- gradle/native-targets.gradle | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) 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() } } } -- cgit v1.2.3