Merge remote-tracking branch 'origin/patch'

This commit is contained in:
Ryan Kurtz
2025-08-20 05:12:40 -04:00
4 changed files with 62 additions and 44 deletions

View File

@@ -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")
}