Awoocord/settings.gradle.kts

18 lines
372 B
Text
Raw Normal View History

2025-05-29 03:12:05 +10:00
rootProject.name = "Awoocord"
val canaryPlugins = arrayOf("ComponentsV2")
2025-05-29 03:12:05 +10:00
include(
2025-06-23 22:22:12 +10:00
"AlignThreads",
"Scout",
*canaryPlugins,
2025-05-29 03:12:05 +10:00
)
rootProject.children.forEach {
val isCanary = it.name in canaryPlugins
val dir = if (isCanary) "canary" else "plugins"
val name = it.name
if (isCanary) it.name += "Beta"
it.projectDir = file("${dir}/${name}")
2025-05-29 03:12:05 +10:00
}