Skip to content

Commit

Permalink
[orx-image-fit] Move dependencies {} out of defaultSourceSet {}
Browse files Browse the repository at this point in the history
  • Loading branch information
edwinRNDR committed Aug 16, 2022
1 parent 5c2e0ea commit 9db3c48
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions orx-image-fit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,18 @@ kotlin {
val demo by creating {
defaultSourceSet {
kotlin.srcDir("src/demo")
dependencies {
implementation(project(":orx-shapes"))
implementation(project(":orx-image-fit"))
implementation(libs.openrndr.application)
implementation(libs.openrndr.extensions)
runtimeOnly(libs.openrndr.gl3.core)
runtimeOnly(libs.openrndr.gl3.natives)
implementation(compilations["main"]!!.output.allOutputs)
}
}
collectScreenshots {

}
dependencies {
implementation(project(":orx-shapes"))
implementation(project(":orx-image-fit"))
implementation(libs.openrndr.application)
implementation(libs.openrndr.extensions)
runtimeOnly(libs.openrndr.gl3.core)
runtimeOnly(libs.openrndr.gl3.natives)
implementation(compilations["main"]!!.output.allOutputs)
}
collectScreenshots { }
}
}
testRuns["test"].executionTask.configure {
Expand Down

0 comments on commit 9db3c48

Please sign in to comment.