mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-01-09 22:17:55 -05:00
GP-1 Added ability to skip building of all natives for gradle build
This commit is contained in:
@@ -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")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user