Add orx-boofcv

This commit is contained in:
Edwin Jakobs
2020-05-15 19:58:05 +02:00
parent 4690667137
commit 3a90f63a0b
7 changed files with 360 additions and 1 deletions

22
orx-boofcv/build.gradle Normal file
View File

@@ -0,0 +1,22 @@
sourceSets {
demo {
java {
srcDirs = ["src/demo/kotlin"]
compileClasspath += main.getCompileClasspath()
runtimeClasspath += main.getRuntimeClasspath()
}
}
}
def boofcvVersion = "0.34"
dependencies {
compile("org.boofcv:boofcv-core:$boofcvVersion")
demoImplementation("org.openrndr:openrndr-core:$openrndrVersion")
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)
}