cloudstream-extensions/settings.gradle.kts

24 lines
727 B
Plaintext
Raw Permalink Normal View History

2022-08-09 17:42:39 +00:00
rootProject.name = "CloudstreamPlugins"
// This file sets what projects are included. Every time you add a new project, you must add it
// to the includes below.
// Plugins are included like this
2022-09-09 17:56:29 +00:00
val disabled = listOf<String>(
"KisskhProvider", "Topdocumentaryfilms", "Tvtwofourseven", "WcofunProvider"
)
2022-08-11 14:55:58 +00:00
2022-08-16 14:06:41 +00:00
File(rootDir, ".").eachDir { dir ->
if (!disabled.contains(dir.name) && File(dir, "build.gradle.kts").exists()) {
include(dir.name)
}
}
2022-08-11 14:55:58 +00:00
2022-08-16 14:06:41 +00:00
fun File.eachDir(block: (File) -> Unit) {
listFiles()?.filter { it.isDirectory }?.forEach { block(it) }
}
// To only include a single project, comment out the previous lines (except the first one), and include your plugin like so:
// include("PluginName")