0
0
mirror of https://github.com/florisboard/florisboard.git synced 2024-09-19 11:32:18 +02:00

Add .cxx directories to clean command

This commit is contained in:
Patrick Goldinger 2023-06-02 00:51:46 +02:00
parent eeaef4f5de
commit 99902681dc
No known key found for this signature in database
GPG Key ID: 533467C3DC7B9262

View File

@ -218,6 +218,12 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().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"))