Skip to content

Commit

Permalink
Cleanup of pod includes
Browse files Browse the repository at this point in the history
  • Loading branch information
britzl committed Oct 24, 2023
1 parent 2da4b3b commit 5107e22
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions server/src/main/java/com/defold/extender/Extender.java
Original file line number Diff line number Diff line change
Expand Up @@ -532,15 +532,8 @@ private List<String> getIncludeDirs(File extDir) {
}
includes.addAll(podIncludes);
includes.addAll(getFrameworkStaticLibIncludeDirs(resolvedPods));
includes.add(ExtenderUtil.getRelativePath(jobDirectory, resolvedPods.generatedDir));

for (PodSpec pod : resolvedPods.pods) {
if (platform.contains("ios") && pod.iosModuleMap != null) {
includes.add(ExtenderUtil.getRelativePath(jobDirectory, new File(pod.iosModuleMap)));
}
else if (platform.contains("osx") && pod.osxModuleMap != null) {
includes.add(ExtenderUtil.getRelativePath(jobDirectory, new File(pod.osxModuleMap)));
}
includes.add(ExtenderUtil.getRelativePath(jobDirectory, pod.generatedDir));
}
}
Expand Down

0 comments on commit 5107e22

Please sign in to comment.