From d38f512437a45acc9ac882451c6eff8af2a74ae1 Mon Sep 17 00:00:00 2001 From: ghidra1 Date: Tue, 19 Aug 2025 18:08:30 -0400 Subject: [PATCH] GP-1 Added ability to skip building of all natives for gradle build --- GPL/nativeBuildProperties.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GPL/nativeBuildProperties.gradle b/GPL/nativeBuildProperties.gradle index 23eb20a824..f2505898f3 100644 --- a/GPL/nativeBuildProperties.gradle +++ b/GPL/nativeBuildProperties.gradle @@ -107,6 +107,9 @@ def isNativeBinaryMakeTask(Task task, String platform) { * ******************************************************************************************/ def shouldSkipNative(task) { + if (rootProject.hasProperty("skipAllNatives")) { + return true; + } return task.ext.has("skipNative") && task.ext.get("skipNative") }