mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-10 06:02:09 +00:00
13 lines
368 B
Groovy
13 lines
368 B
Groovy
|
/* ###
|
||
|
* IP: Public Domain
|
||
|
*/
|
||
|
// Recurse root project subdirectories and include all discovered projects
|
||
|
// (directories containing a build.gradle file)
|
||
|
fileTree(rootProject.projectDir) {
|
||
|
exclude 'build.gradle' // exclude root project
|
||
|
include '**/build.gradle'
|
||
|
}.each {
|
||
|
include it.parentFile.name;
|
||
|
project(":$it.parentFile.name").projectDir = it.parentFile;
|
||
|
}
|