Skip to content

Commit

Permalink
Gradle: Add a Gradle task that triggers cleanAll recursively
Browse files Browse the repository at this point in the history
This patch adds a Gradle task that recursively triggers the cleanAll
tasks to the build.gradle.kts file in the project root directory.

Signed-off-by: Wook Song <wook16.song@samsung.com>
  • Loading branch information
wooksong authored and jaeyun-jung committed May 13, 2024
1 parent de1ca3c commit da5fb23
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,10 @@ buildscript {
classpath(libs.tukaani.xz)
}
}

tasks {
register("cleanAll") {
dependsOn("nnstreamer-api:cleanAll")
dependsOn("externals:cleanAll")
}
}

0 comments on commit da5fb23

Please sign in to comment.