Files
orx/orx-jvm/orx-gui/build.gradle.kts
Edwin Jakobs b7ba6f6daa Feature variants (#376)
Migrate from buildSrc to build-logic. Setup feature variants.
2025-09-17 10:03:02 +02:00

18 lines
562 B
Plaintext

plugins {
id("org.openrndr.extra.convention.kotlin-jvm")
}
dependencies {
api(project(":orx-parameters"))
api(project(":orx-jvm:orx-panel"))
api(project(":orx-noise"))
demoImplementation(project(":orx-property-watchers"))
implementation(sharedLibs.kotlin.coroutines)
implementation(openrndr.application)
implementation(openrndr.math)
implementation(openrndr.filter)
implementation(openrndr.dialogs)
implementation(libs.gson)
implementation(sharedLibs.kotlin.reflect)
demoRuntimeOnly(sharedLibs.slf4j.simple)
}