orx-kinect-v1-demo module for testing the code and verifying use cases

This commit is contained in:
Kazik Pogoda
2019-08-24 00:30:31 +02:00
parent 817ec243dc
commit 6318891502
7 changed files with 211 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
def os = org.gradle.internal.os.OperatingSystem.current()
def openrndrOs
if (os.windows) { openrndrOs = "windows" }
else if (os.macOsX) { openrndrOs = "macos" }
else if (os.linux) { openrndrOs = "linux-x64" }
dependencies {
compile project(":orx-kinect-v1")
runtime project(":orx-kinect-v1-natives-$openrndrOs")
runtime "org.openrndr:openrndr-gl3:$openrndrVersion"
runtime "org.openrndr:openrndr-gl3-natives-$openrndrOs:$openrndrVersion"
runtime "ch.qos.logback:logback-classic:1.2.3"
}