Skip to content

Commit

Permalink
Binary not found in Core Build Makefile project
Browse files Browse the repository at this point in the history
Fixed the problem for Core Build Makefile projects that the output
binary could not be found during launching when the user set the
Build Output Location to "Build in project directory".
The project was only looking for binaries in the "build" folder.
  • Loading branch information
ewaterlander committed Mar 17, 2023
1 parent 50bddd8 commit e12a04a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void generate(Map<String, Object> model, IProgressMonitor monitor) throws
}
}

entries.add(CoreModel.newOutputEntry(buildFolder.getFullPath()));
entries.add(CoreModel.newOutputEntry(project.getFullPath()));
CoreModel.getDefault().create(project).setRawPathEntries(entries.toArray(new IPathEntry[entries.size()]),
monitor);
}
Expand Down

0 comments on commit e12a04a

Please sign in to comment.