Skip to content

Commit

Permalink
GP-0: Adding a cleanNatives Gradle task
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmkurtz committed Apr 27, 2023
1 parent f862cdd commit 9ab603f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gradle/nativeProject.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,10 @@ rootProject.assembleDistribution {
into { getZipPath(p) }
}
}

task cleanNatives {
File nativeOutputDir = file('build/os')
doFirst {
delete nativeOutputDir
}
}

0 comments on commit 9ab603f

Please sign in to comment.