ghidra/GhidraBuild/EclipsePlugins/GhidraDev/GhidraDevFeature/build.gradle

12 lines
346 B
Groovy

//This project requires the eclpse PDE plugin. To create eclipse files for this project, run
// "gradle eclipse -PeclipsePDE"
if (hasProperty("eclipsePDE")) {
apply plugin: 'eclipse'
eclipse {
project {
name = 'Eclipse GhidraDevFeature'
buildCommand 'org.eclipse.pde.FeatureBuilder'
natures 'org.eclipse.pde.FeatureNature'
}
}
}