Add DemoNoClear.kt

This commit is contained in:
Abe Pazos
2020-05-08 15:56:14 +02:00
committed by GitHub
parent a6acae0882
commit 829c7a82b7
2 changed files with 91 additions and 0 deletions

19
orx-no-clear/build.gradle Normal file
View File

@@ -0,0 +1,19 @@
sourceSets {
demo {
java {
srcDirs = ["src/demo/kotlin"]
compileClasspath += main.getCompileClasspath()
runtimeClasspath += main.getRuntimeClasspath()
}
}
}
dependencies {
//implementation project(":orx-?")
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)
}