Fixes Bullet-Native Artifacts not containing natives when not building from cpp source and not using the build target.
This commit is contained in:
parent
77c521fefa
commit
ec491575be
34
build.gradle
34
build.gradle
@ -158,29 +158,29 @@ task configureAndroidNDK {
|
||||
|
||||
gradle.rootProject.ext.set("usePrebuildNatives", buildNativeProjects!="true");
|
||||
|
||||
if(skipPrebuildLibraries!="true"&&buildNativeProjects!="true"){
|
||||
if (skipPrebuildLibraries != "true" && buildNativeProjects != "true") {
|
||||
String rootPath = rootProject.projectDir.absolutePath
|
||||
|
||||
Properties nativesSnasphotProp = new Properties()
|
||||
File nativesSnasphotPropF=new File("${rootPath}/natives-snapshot.properties");
|
||||
File nativesSnasphotPropF = new File("${rootPath}/natives-snapshot.properties");
|
||||
|
||||
if(nativesSnasphotPropF.exists()){
|
||||
if (nativesSnasphotPropF.exists()) {
|
||||
|
||||
nativesSnasphotPropF.withInputStream { nativesSnasphotProp.load(it) }
|
||||
|
||||
String nativesSnasphot=nativesSnasphotProp.getProperty("natives.snapshot");
|
||||
String nativesUrl=PREBUILD_NATIVES_URL.replace('${natives.snapshot}',nativesSnasphot)
|
||||
println "Use natives snapshot: "+nativesUrl
|
||||
String nativesSnasphot = nativesSnasphotProp.getProperty("natives.snapshot");
|
||||
String nativesUrl = PREBUILD_NATIVES_URL.replace('${natives.snapshot}', nativesSnasphot)
|
||||
println "Use natives snapshot: " + nativesUrl
|
||||
|
||||
String nativesZipFile="${rootPath}" + File.separator + "build"+ File.separator +nativesSnasphot+"-natives.zip"
|
||||
String nativesPath="${rootPath}" + File.separator + "build"+ File.separator +"native"
|
||||
String nativesZipFile = "${rootPath}" + File.separator + "build" + File.separator + nativesSnasphot + "-natives.zip"
|
||||
String nativesPath = "${rootPath}" + File.separator + "build" + File.separator + "native"
|
||||
|
||||
|
||||
task getNativesZipFile {
|
||||
outputs.file nativesZipFile
|
||||
doFirst {
|
||||
File target = file(nativesZipFile);
|
||||
println("Download natives from "+nativesUrl+" to "+nativesZipFile);
|
||||
println("Download natives from " + nativesUrl + " to " + nativesZipFile);
|
||||
target.getParentFile().mkdirs();
|
||||
ant.get(src: nativesUrl, dest: target);
|
||||
}
|
||||
@ -192,28 +192,26 @@ if(skipPrebuildLibraries!="true"&&buildNativeProjects!="true"){
|
||||
dependsOn getNativesZipFile
|
||||
|
||||
doFirst {
|
||||
for(File src : zipTree(nativesZipFile)){
|
||||
String srcRel=src.getAbsolutePath().substring((int)(nativesZipFile.length()+1));
|
||||
srcRel=srcRel.substring(srcRel.indexOf( File.separator)+1);
|
||||
for (File src : zipTree(nativesZipFile)) {
|
||||
String srcRel = src.getAbsolutePath().substring((int) (nativesZipFile.length() + 1));
|
||||
srcRel = srcRel.substring(srcRel.indexOf(File.separator) + 1);
|
||||
|
||||
File dest=new File(nativesPath+File.separator+srcRel);
|
||||
File dest = new File(nativesPath + File.separator + srcRel);
|
||||
boolean doCopy = !(dest.exists() && dest.lastModified() > src.lastModified())
|
||||
if (doCopy) {
|
||||
println("Copy "+src+" "+dest);
|
||||
println("Copy " + src + " " + dest);
|
||||
dest.getParentFile().mkdirs();
|
||||
Files.copy(src.toPath(), dest.toPath(), StandardCopyOption.REPLACE_EXISTING);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
build.dependsOn extractPrebuiltNatives
|
||||
|
||||
assemble.dependsOn extractPrebuiltNatives
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//class IncrementalReverseTask extends DefaultTask {
|
||||
// @InputDirectory
|
||||
// def File inputDir
|
||||
|
Loading…
x
Reference in New Issue
Block a user