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 authored and jonahgraham committed Mar 19, 2023
1 parent 2b297c4 commit a6a4bfc
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 a6a4bfc

Please sign in to comment.