mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-24 21:21:56 +00:00
Merge branch 'GT-3310_ryanmkurtz_PR-1238_kant2002_fix-paths-gradle-help'
This commit is contained in:
commit
3f91b703ea
@ -95,7 +95,7 @@ rootProject.assembleDistribution {
|
||||
*****************************************************************************************/
|
||||
task sleighCompile (type: JavaExec) {
|
||||
group = rootProject.GHIDRA_GROUP
|
||||
description " Compiles all the sleigh languages. [processorUtils.gradle]\n"
|
||||
description " Compiles all the sleigh languages. [gradle/processorProject.gradle]\n"
|
||||
|
||||
// define standard parameters for JavaExec
|
||||
classpath configurations.sleighConfig
|
||||
@ -128,7 +128,7 @@ rootProject.allSleighCompile.dependsOn saveSleighArgs
|
||||
*****************************************************************************************/
|
||||
task cleanSleigh {
|
||||
group rootProject.GHIDRA_GROUP
|
||||
description "Removes all the compile sleigh language files (*.sla). [gradle/processProject.gradle]\n"
|
||||
description "Removes all the compile sleigh language files (*.sla). [gradle/processorProject.gradle]\n"
|
||||
doLast {
|
||||
def deleteTree = fileTree(dir: "data/languages", include: "*.sla")
|
||||
deleteTree.each { File file ->
|
||||
|
@ -16,7 +16,7 @@
|
||||
*********************************************************************************/
|
||||
task rasterizeSvg(type: JavaExec) {
|
||||
group rootProject.GHIDRA_GROUP
|
||||
description " Converts .svg files to .png files. [gradle/root/distribution.gradle]\n"
|
||||
description " Converts .svg files to .png files. [gradle/root/svg.gradle]\n"
|
||||
|
||||
subprojects { p ->
|
||||
|
||||
|
@ -4,7 +4,7 @@ task zipExtensions (type: Zip) {
|
||||
def p = this.project
|
||||
|
||||
it.group 'private'
|
||||
it.description "Creates a zip file for an extension module. [gradle/support/distribution.gradle]"
|
||||
it.description "Creates a zip file for an extension module. [gradle/support/extensionCommon.gradle]"
|
||||
it.archiveName "${rootProject.ext.ZIP_NAME_PREFIX}_${p.name}.zip"
|
||||
it.destinationDir rootProject.ext.DISTRIBUTION_DIR
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user