Including GhidraSleighEditor in build.

This commit is contained in:
Ryan Kurtz 2019-07-15 14:34:54 -04:00
parent 1cc8de3e67
commit 820eafbd65

View File

@ -38,3 +38,15 @@ if (hasProperty("eclipseDSL")) {
}
}
}
// We do not currently build the SleighEditor plugin at Ghidra build time so we must
// copy the prebuilt zip file from the BIN_REPO
rootProject.assembleDistribution {
from ("${BIN_REPO}/GhidraBuild/EclipsePlugins/GhidraSleighEditor") {
include 'GhidraSleighEditor*.zip'
into "Extensions/Eclipse/GhidraSleighEditor/"
}
from ("${this.projectDir}/GhidraSleighEditor_README.html") {
into "Extensions/Eclipse/GhidraSleighEditor/"
}
}