mirror of
https://github.com/jlengrand/korge-samples.git
synced 2026-03-10 08:31:18 +00:00
8 lines
259 B
Groovy
8 lines
259 B
Groovy
enableFeaturePreview("GRADLE_METADATA")
|
|
|
|
for (file in rootDir.listFiles()) {
|
|
if (file.isDirectory() && file.name.startsWith("sample-") && (new File(file, "build.gradle").exists() || new File(file, "build.gradle").exists())) {
|
|
include(":${file.name}")
|
|
}
|
|
}
|