ghidra/Ghidra/Debug/Debugger/build.gradle
2020-12-16 13:06:53 -05:00

22 lines
885 B
Groovy

apply from: "${rootProject.projectDir}/gradle/javaProject.gradle"
apply from: "${rootProject.projectDir}/gradle/helpProject.gradle"
apply from: "${rootProject.projectDir}/gradle/jacocoProject.gradle"
apply from: "${rootProject.projectDir}/gradle/javaTestProject.gradle"
apply from: "${rootProject.projectDir}/gradle/distributableGhidraModule.gradle"
apply plugin: 'eclipse'
eclipse.project.name = 'Debug Debugger'
dependencies {
compile project(':Framework-AsyncComm')
compile project(':Framework-Debugging')
compile project(':Framework-TraceModeling')
compile project(':Base')
compile project(':ByteViewer')
compile project(':ProposedUtils')
helpPath project(path: ':Base', configuration: 'helpPath')
testCompile project(path: ':Framework-Debugging', configuration: 'testArtifacts')
testCompile project(path: ':Framework-TraceModeling', configuration: 'testArtifacts')
}