ghidra/Ghidra/Features/GraphFunctionCalls/build.gradle
2019-03-26 13:46:51 -04:00

21 lines
769 B
Groovy

apply plugin: 'eclipse'
eclipse.project.name = 'Features Graph FunctionCalls'
apply from: "$rootProject.projectDir/gradleScripts/buildHelp.gradle"
// Note: this module's name is 'GraphFunctionCalls'
dependencies {
compile project(":Base")
helpPath project(path: ":Base", configuration: 'helpPath')
// This is needed now because we like to the help of the FunctionGraph. If and when that
// help is extracted to a higher-level help page, like 'Graphing', then this link should be
// removed
helpPath project(path: ":FunctionGraph", configuration: 'helpPath')
// These have abstract test classes and stubs needed by this module
testCompile project(':Project').sourceSets.test.output
testCompile project(':SoftwareModeling').sourceSets.test.output
}