[Native] Add clean task to K/N:endorsedLibraries

Currently, :kotlin-native:endorsedLibraries does not have its build
directory deleted during a clean.

This task should probably be inherited from a plugin instead, but it is
not clear to me which one.
This commit is contained in:
Troels Bjerre Lund
2022-06-01 09:31:02 +02:00
committed by Space
parent db3c2d2ba0
commit 5410655266
@@ -91,3 +91,7 @@ tasks.register("endorsedLibsSources") {
dependsOn("${library.taskName}NativeSources")
}
}
tasks.register("clean") {
delete("build")
}