Skip to content

Commit

Permalink
Fix includes paths
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogs9 committed Feb 15, 2024
1 parent 98e6ee3 commit 8bf8689
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/java/com/eprosima/microxrcedds/microxrceddsgen.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,9 @@ public boolean execute() {
if (project != null) {
solution.addProject(project);

for (String file : project.getDependencies()) {
String idl_file = Util.getIDLFileDirectoryOnly(m_idlFiles.get(count)) + file + ".idl";
System.out.println("Adding dependency project " + idl_file);
Project depProject = process(idl_file);
for (String file : project.getFullDependencies()) {
System.out.println("Adding dependency project " + file);
Project depProject = process(file);
}
} else {
returnedValue = false;
Expand Down

0 comments on commit 8bf8689

Please sign in to comment.