2
0

Execute gradle scripts with bash.

This commit is contained in:
Maarten Billemont
2018-06-25 10:34:56 -04:00
parent 8276d2f4e5
commit 8ffc0ae350
3 changed files with 5 additions and 8 deletions

View File

@@ -53,13 +53,11 @@ library {
if (project.tasks.findByName('buildLibSodium') == null)
archive.dependsOn task( type: Exec, 'buildLibSodium', {
workingDir file( "$rootDir/../lib/bin" )
commandLine 'bash', "./build_libsodium-${platform}"
commandLine 'bash', "$rootDir/../lib/bin/build_libsodium-${platform}"
} )
// if (project.tasks.findByName('buildLibJson-c') == null)
// archive.dependsOn task( type: Exec, 'buildLibJson-c', {
// workingDir file( "$rootDir/../lib/bin" )
// commandLine 'bash', "./build_libjson-c-${platform}"
// commandLine 'bash', "$rootDir/../lib/bin/build_libjson-c-${platform}"
// } )
project.dependencies {