GP-0: Adding a cleanNatives Gradle task

This commit is contained in:
Ryan Kurtz 2023-04-27 07:53:20 -04:00
parent f862cdd93d
commit 9ab603fb2d

View File

@ -44,3 +44,10 @@ rootProject.assembleDistribution {
into { getZipPath(p) }
}
}
task cleanNatives {
File nativeOutputDir = file('build/os')
doFirst {
delete nativeOutputDir
}
}