Browse Source

Add boofcv to build.gradle.kts

master
Abe Pazos 4 years ago
parent
commit
a483ecfd64
  1. 5
      build.gradle.kts

5
build.gradle.kts

@ -11,6 +11,7 @@ val applicationMainClass = "TemplateProgramKt"
/* Which additional (ORX) libraries should be added to this project. */ /* Which additional (ORX) libraries should be added to this project. */
val orxFeatures = setOf( val orxFeatures = setOf(
// "orx-boofcv",
// "orx-camera", // "orx-camera",
"orx-compositor", "orx-compositor",
// "orx-easing", // "orx-easing",
@ -172,6 +173,10 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-script-runtime:$kotlinVersion") implementation("org.jetbrains.kotlin:kotlin-script-runtime:$kotlinVersion")
} }
if ("orx-boofcv" in orxFeatures) {
implementation("org.boofcv:boofcv-core:0.35")
}
implementation(kotlin("stdlib-jdk8")) implementation(kotlin("stdlib-jdk8"))
testImplementation("junit", "junit", "4.12") testImplementation("junit", "junit", "4.12")
} }

Loading…
Cancel
Save