syncthing-android/syncthing/build.gradle

15 lines
408 B
Groovy
Raw Normal View History

task buildNative(type: Exec) {
2018-07-17 23:17:58 +00:00
inputs.dir("$projectDir/src/")
outputs.dir("$projectDir/../app/src/main/jniLibs/")
executable = 'python'
args = ['-u', './build-syncthing.py']
}
/**
* Use separate task instead of standard clean(), so these folders aren't deleted by `gradle clean`.
*/
task cleanNative(type: Delete) {
2018-07-17 23:17:58 +00:00
delete "$projectDir/../app/src/main/jniLibs/"
delete "gobuild"
}