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