Commit d8666ac0 by ojw28 Committed by GitHub

Merge pull request #2715 from canatella/out-of-tree-build

Allow out of tree builds.
parents 86ed73e7 41f4f24f
Showing with 5 additions and 0 deletions
......@@ -51,6 +51,11 @@ allprojects {
releaseVersion = 'r2.3.1'
releaseWebsite = 'https://github.com/google/ExoPlayer'
}
if (it.hasProperty('externalBuildDir')) {
if (!new File(externalBuildDir).isAbsolute())
externalBuildDir = new File(rootDir, externalBuildDir)
buildDir = "${externalBuildDir}/${project.name}"
}
}
def getBintrayRepo() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment