[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:
committed by
Space
parent
db3c2d2ba0
commit
5410655266
@@ -91,3 +91,7 @@ tasks.register("endorsedLibsSources") {
|
|||||||
dependsOn("${library.taskName}NativeSources")
|
dependsOn("${library.taskName}NativeSources")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.register("clean") {
|
||||||
|
delete("build")
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user