28 lines
830 B
Groovy
28 lines
830 B
Groovy
sourceSets {
|
|
demo {
|
|
java {
|
|
srcDirs = ["src/demo/kotlin"]
|
|
compileClasspath += main.getCompileClasspath()
|
|
runtimeClasspath += main.getRuntimeClasspath()
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":orx-jvm:orx-file-watcher")
|
|
implementation project(":orx-jvm:orx-kotlin-parser")
|
|
|
|
implementation libs.kotlin.scriptingJvm
|
|
implementation libs.kotlin.scriptingJvmHost
|
|
implementation libs.kotlin.reflect
|
|
implementation libs.kotlin.scriptingJSR223
|
|
|
|
demoImplementation(project(":orx-camera"))
|
|
|
|
demoImplementation(libs.openrndr.application)
|
|
demoImplementation(libs.openrndr.extensions)
|
|
demoRuntimeOnly(libs.openrndr.gl3.core)
|
|
demoRuntimeOnly(libs.openrndr.gl3.natives)
|
|
|
|
demoImplementation(sourceSets.getByName("main").output)
|
|
} |