Add openssl as a dependency to Folly

This commit is contained in:
Pritesh Nandgaonkar
2018-06-13 18:49:01 +01:00
parent c2b1f09c84
commit 02161dc06b
3 changed files with 60 additions and 28 deletions

View File

@@ -134,7 +134,8 @@ task downloadOpenSSL(dependsOn: [], type: Download) {
task prepareOpenSSL(dependsOn: [downloadOpenSSL], type: Copy) {
from tarTree(downloadOpenSSL.dest)
include 'openssl-android-1.0.0/**/*'
from './third-party/OpenSSL/'
include 'openssl-android-1.0.0/**/*', 'libs/**/*'
includeEmptyDirs = false
into "$thirdPartyNdkDir/OpenSSL/"
}