Disable collectScreenshots for orx-minim

This commit is contained in:
Edwin Jakobs
2023-04-05 09:10:46 +02:00
parent 39fbf5b91b
commit b29d4024af

View File

@@ -34,7 +34,8 @@ val main: SourceSet by sourceSets.getting
@Suppress("UNUSED_VARIABLE")
val demo: SourceSet by sourceSets.creating {
if (project.name != "openrndr-demos") {
val skipDemos = setOf("openrndr-demos", "orx-minim")
if (project.name !in skipDemos) {
collectScreenshots(project, this@creating) { }
}
}