Files
orx/orx-rabbit-control/build.gradle
Rein van der Woerd 58d444b9a3 serve orx-rabbit-control locally using Ktor
* orx-rabbit-control: writing the QR code to a file is no longer necessary
* Smaller QR-code image with MagnifyingFilter.NEAREST
* orx-rabbit-control: client is now served locally using Ktor
* Changed some getters to 'val'
* compile ⟶  implementation
2020-05-04 14:32:58 +02:00

30 lines
894 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.1"
implementation "com.google.zxing:core:3.4.0"
implementation "com.google.zxing:javase:3.4.0"
implementation "io.ktor:ktor-server-netty:1.3.2"
demoImplementation("org.openrndr:openrndr-extensions:$openrndrVersion")
demoRuntimeOnly("org.openrndr:openrndr-gl3:$openrndrVersion")
demoRuntimeOnly("org.openrndr:openrndr-gl3-natives-$openrndrOS:$openrndrVersion")
demoImplementation(sourceSets.getByName("main").output)
}