mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Projucer: Fix LV2 manifest helper path in makefile exporter
This commit is contained in:
parent
65f1a76614
commit
ec8cd0e48b
1 changed files with 5 additions and 1 deletions
|
|
@ -1021,7 +1021,11 @@ private:
|
|||
targetFiles.add (f);
|
||||
|
||||
if (targetType == MakefileTarget::LV2TurtleProgram)
|
||||
targetFiles.add ({ rebaseFromProjectFolderToBuildTarget (getLV2TurtleDumpProgramSource()).toUnixStyle(), {} });
|
||||
{
|
||||
const auto path = getLV2TurtleDumpProgramSource().toUnixStyle();
|
||||
const auto prefix = build_tools::isAbsolutePath (path) ? "" : "./";
|
||||
targetFiles.add ({ prefix + path, {} });
|
||||
}
|
||||
|
||||
return targetFiles;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue