mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-1 Added ability to skip building of all natives for gradle build
This commit is contained in:
parent
21b27795dd
commit
d38f512437
1 changed files with 3 additions and 0 deletions
|
@ -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")
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue