From 99902681dc0020c62ffc353a632a472564b69d77 Mon Sep 17 00:00:00 2001 From: Patrick Goldinger Date: Fri, 2 Jun 2023 00:51:46 +0200 Subject: [PATCH] Add `.cxx` directories to clean command --- app/build.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 76022985..dee45436 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -218,6 +218,12 @@ tasks.withType().configureEach } } +val customClean by tasks.registering(Delete::class) { + delete(file(".cxx").absolutePath) + delete(file(".cxx_icu4c").absolutePath) +} +tasks.getByName("clean").dependsOn(customClean) + dependencies { implementation(project(":ime-lib")) implementation(project(":plugin"))