From a483ecfd64d4a3b1f9952ab286b7b91c30defee5 Mon Sep 17 00:00:00 2001 From: Abe Pazos Date: Tue, 19 May 2020 09:58:10 +0200 Subject: [PATCH] Add boofcv to build.gradle.kts --- build.gradle.kts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index b05f10f..a10648f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,6 +11,7 @@ val applicationMainClass = "TemplateProgramKt" /* Which additional (ORX) libraries should be added to this project. */ val orxFeatures = setOf( +// "orx-boofcv", // "orx-camera", "orx-compositor", // "orx-easing", @@ -172,6 +173,10 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-script-runtime:$kotlinVersion") } + if ("orx-boofcv" in orxFeatures) { + implementation("org.boofcv:boofcv-core:0.35") + } + implementation(kotlin("stdlib-jdk8")) testImplementation("junit", "junit", "4.12") }