mirror of
https://github.com/recloudstream/plugin-template.git
synced 2024-08-15 03:16:05 +00:00
Merge pull request #2 from recloudstream/patch-1
This commit is contained in:
commit
388d4dfd36
1 changed files with 16 additions and 6 deletions
|
@ -1,9 +1,19 @@
|
||||||
rootProject.name = "CloudstreamPlugins"
|
rootProject.name = "CloudstreamPlugins"
|
||||||
|
|
||||||
// This file sets what projects are included. Every time you add a new project, you must add it
|
// This file sets what projects are included. All new projects should get automatically included unless specified in "disabled" variable.
|
||||||
// to the includes below.
|
|
||||||
|
|
||||||
// Plugins are included like this
|
val disabled = listOf()
|
||||||
include(
|
|
||||||
"ExampleProvider"
|
File(rootDir, ".").eachDir { dir ->
|
||||||
)
|
if (!disabled.contains(dir.name) && File(dir, "build.gradle.kts").exists()) {
|
||||||
|
include(dir.name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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")
|
||||||
|
|
Loading…
Reference in a new issue