Files
orx/orx-rabbit-control/build.gradle
Rein van der Woerd 5d3eadd156 Add optional QR-code overlay for orx-rabbit-control
* 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
2020-04-07 17:04:35 +02:00

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)
}