Browse Source

Projucer: Fix LV2 manifest helper path in makefile exporter

v7.0.9
reuk 2 years ago
parent
commit
ec8cd0e48b
No known key found for this signature in database GPG Key ID: FCB43929F012EE5C
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h

+ 5
- 1
extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h View File

@@ -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…
Cancel
Save