Skip to content

Commit

Permalink
Add pod generated dir to includes
Browse files Browse the repository at this point in the history
  • Loading branch information
britzl committed Oct 24, 2023
1 parent 5107e22 commit 0807d38
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions server/src/main/java/com/defold/extender/Extender.java
Original file line number Diff line number Diff line change
Expand Up @@ -529,13 +529,10 @@ private List<String> getIncludeDirs(File extDir) {
}
}
podIncludes.add( ExtenderUtil.getRelativePath(jobDirectory, pod.dir) );
podIncludes.add( ExtenderUtil.getRelativePath(jobDirectory, pod.generatedDir) );
}
includes.addAll(podIncludes);
includes.addAll(getFrameworkStaticLibIncludeDirs(resolvedPods));

for (PodSpec pod : resolvedPods.pods) {
includes.add(ExtenderUtil.getRelativePath(jobDirectory, pod.generatedDir));
}
}

return pruneNonExisting(includes);
Expand Down

0 comments on commit 0807d38

Please sign in to comment.