Feature variants (#376)

Migrate from buildSrc to build-logic. Setup feature variants.
This commit is contained in:
Edwin Jakobs
2025-09-17 01:03:02 -07:00
committed by GitHub
parent 2979963d3f
commit b7ba6f6daa
100 changed files with 424 additions and 326 deletions

View File

@@ -1,5 +1,5 @@
plugins {
org.openrndr.extra.convention.`kotlin-jvm`
id("org.openrndr.extra.convention.kotlin-jvm")
}
dependencies {
@@ -9,6 +9,6 @@ dependencies {
implementation(project(":orx-jvm:orx-depth-camera-calibrator"))
implementation(project(":orx-fx"))
implementation(project(":orx-jvm:orx-gui"))
runtimeOnly(project(":orx-jvm:orx-kinect-v1-${(gradle as ExtensionAware).extra["openrndrClassifier"]}"))
runtimeOnly(libs.openrndr.gl3.core)
runtimeOnly(project(":orx-jvm:orx-kinect-v1"))
runtimeOnly(openrndr.gl3)
}