GP-1 Added ability to skip building of all natives for gradle build

This commit is contained in:
ghidra1 2025-08-19 18:08:30 -04:00
parent 21b27795dd
commit d38f512437

View file

@ -107,6 +107,9 @@ def isNativeBinaryMakeTask(Task task, String platform) {
* *
******************************************************************************************/ ******************************************************************************************/
def shouldSkipNative(task) { def shouldSkipNative(task) {
if (rootProject.hasProperty("skipAllNatives")) {
return true;
}
return task.ext.has("skipNative") && task.ext.get("skipNative") return task.ext.has("skipNative") && task.ext.get("skipNative")
} }