ghidra/gradle
2019-09-03 12:33:22 -04:00
..
root changed binning to take app config into account 2019-09-03 12:33:22 -04:00
support broke out more integration tests for the binning 2019-09-03 12:33:22 -04:00
certification.manifest Merge remote-tracking branch 'origin/ghidra1_Emulator' 2019-07-12 16:14:17 -04:00
distributableGhidraExtension.gradle Major refactoring of the gradle build system. 2019-04-23 15:20:26 -04:00
distributableGhidraModule.gradle Fixing build issues. 2019-04-26 18:17:11 -04:00
distributableGPLExtension.gradle Added extensions GnuDisassembler and SleighDevTools 2019-06-25 09:40:15 -04:00
distributableGPLModule.gradle Corrected GPL build issues 2019-06-13 14:06:37 -04:00
externalGhidraExtension.gradle Major refactoring of the gradle build system. 2019-04-23 15:20:26 -04:00
helpProject.gradle Help - turn off debug 2019-04-24 18:01:31 -04:00
jacocoProject.gradle Gradle jacocoReport and jacocoBranchReport now only use subprojects with Java sourceSets 2019-04-24 15:06:39 -04:00
javaProject.gradle GT-3062: code review fixes (closes #875) 2019-08-06 16:45:18 -04:00
javaTestProject.gradle fixing test problems 2019-08-28 10:46:12 -04:00
nativeProject.gradle Major refactoring of the gradle build system. 2019-04-23 15:20:26 -04:00
processorProject.gradle gradle clean now removes sleighArgs.txt files. 2019-04-24 12:48:05 -04:00
README.txt Major refactoring of the gradle build system. 2019-04-23 15:20:26 -04:00

This folder contains the gradle scripts for the build system.  The gradle files at this level are
intended to be included by individual gradle project's build.gradle files. They add support for 
specific capabilities and are described below.  There are also two sub-folders.  The sub-folder 
"root" contains gradle scripts that are applied only to the root project's build.gradle file and 
are just a way to organize and break up the root project's build code.  The other sub-folder "support"
contains gradle scripts applied from other gradle scripts, mainly to avoid duplication of code. 

The following gradle scripts can be applied to a project's build.gradle file to add support for various capabilities.

javaProject.gradle - apply if the project contains java code.
nativeProject.gradle - apply if the project contains native code.
processorProject.gradle - apply if the project contains processor language specification.
helpProject.gradle - apply if the project contains files for the Ghidra help system.
javaTestProject.gradle - apply if the project contains unit tests.
jacocoProject.gradle - apply to the project to include it in when running the Jacoco task.

The following scripts can be included if the project is to be included in the build process. Only 
one of these scripts should be applied to a project.

distributableGhidraModule.gradle - apply if the Ghidra module should be included in the distribution build.
distributableGhidraExtension.gradle - apply if the Ghidra extension should be included in the distribution build.
externalGhidraExtension.gradle - apply if the Ghidra extension should be built external to the distribution build.