mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
21 lines
769 B
Groovy
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
|
|
|
|
}
|