xpipe/settings.gradle

26 lines
425 B
Groovy
Raw Normal View History

2023-01-27 15:34:46 +13:00
rootProject.name = 'xpipe'
2021-12-02 07:17:54 +13:00
include 'core'
include 'beacon'
2022-08-13 03:26:01 +12:00
2023-09-27 13:47:51 +13:00
include "base"
project(":base").projectDir = file("ext/base")
2023-01-27 15:34:46 +13:00
for (def ext : file("ext").list()) {
2023-09-27 13:47:51 +13:00
if (ext == 'base') {
continue
}
2023-08-26 19:19:41 +12:00
if (file("ext/$ext/build.gradle").exists()) {
2023-09-27 13:47:51 +13:00
2023-08-26 19:19:41 +12:00
include "$ext"
project(":$ext").projectDir = file("ext/$ext")
}
2022-08-13 03:26:01 +12:00
}
2023-01-27 15:34:46 +13:00
include 'app'
2024-04-25 05:31:48 +12:00
if (file("cli").exists()) {
include 'cli'
}
2023-01-27 15:34:46 +13:00
include 'dist'