23 lines
598 B
Groovy
23 lines
598 B
Groovy
sourceSets {
|
|
demo {
|
|
java {
|
|
srcDirs = ["src/demo/kotlin"]
|
|
compileClasspath += main.getCompileClasspath()
|
|
runtimeClasspath += main.getRuntimeClasspath()
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
api libs.librealsense
|
|
demoImplementation(libs.openrndr.application)
|
|
demoImplementation(libs.openrndr.extensions)
|
|
demoRuntimeOnly(project(":orx-jvm:orx-realsense2-natives-${gradle.ext.openrndrOS}"))
|
|
demoRuntimeOnly(libs.openrndr.gl3)
|
|
demoRuntimeOnly(libs.openrndr.gl3.natives)
|
|
demoImplementation(sourceSets.getByName("main").output)
|
|
|
|
}
|