* Optional QR-code overlay for orx-rabbit-control * Animate the QR-code overlay * Changed orx-rabbit-control to the new demo structure * Changed orx-rabbit-control README.MD
28 lines
765 B
Groovy
28 lines
765 B
Groovy
repositories {
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
sourceSets {
|
|
demo {
|
|
java {
|
|
srcDirs = ["src/demo/kotlin"]
|
|
compileClasspath += main.getCompileClasspath()
|
|
runtimeClasspath += main.getRuntimeClasspath()
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api project(":orx-parameters")
|
|
api project(":orx-compositor")
|
|
api project(":orx-image-fit")
|
|
|
|
implementation "io.github.rabbitcontrol:rcp:0.3.0"
|
|
implementation "com.google.zxing:core:3.3.0"
|
|
implementation "com.google.zxing:javase:3.3.0"
|
|
|
|
demoRuntimeOnly("org.openrndr:openrndr-gl3:$openrndrVersion")
|
|
demoRuntimeOnly("org.openrndr:openrndr-gl3-natives-$openrndrOS:$openrndrVersion")
|
|
demoImplementation(sourceSets.getByName("main").output)
|
|
}
|