New orx-axidraw (#356)

This commit is contained in:
Abe Pazos
2025-09-02 06:52:20 +02:00
committed by GitHub
parent 15dad438b9
commit 02afa415a9
13 changed files with 1038 additions and 2 deletions

View File

@@ -35,7 +35,16 @@ val main: SourceSet by sourceSets.getting
@Suppress("UNUSED_VARIABLE")
val demo: SourceSet by sourceSets.creating {
val skipDemos = setOf("openrndr-demos", "orx-minim", "orx-realsense2", "orx-runway", "orx-video-profiles", "orx-midi", "orx-syphon")
val skipDemos = setOf(
"openrndr-demos",
"orx-axidraw",
"orx-midi",
"orx-minim",
"orx-realsense2",
"orx-runway",
"orx-syphon",
"orx-video-profiles",
)
if (project.name !in skipDemos) {
collectScreenshots(project, this@creating) { }
}
@@ -141,4 +150,4 @@ if (shouldPublish) {
setRequired({ isReleaseVersion && gradle.taskGraph.hasTask("publish") })
sign(publishing.publications)
}
}
}