1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Fix relative paths in LV2 plugin builds on macOS

This commit is contained in:
reuk 2022-06-27 13:24:48 +01:00
parent e7581fa947
commit 57a5ed7999
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -2101,7 +2101,7 @@ private:
if (target->type == XcodeTarget::LV2TurtleProgram
&& project.getEnabledModules().isModuleEnabled ("juce_audio_plugin_client"))
{
const auto path = getLV2TurtleDumpProgramSource();
const auto path = rebaseFromProjectFolderToBuildTarget (getLV2TurtleDumpProgramSource());
addFile (FileOptions().withRelativePath ({ expandPath (path.toUnixStyle()), path.getRoot() })
.withSkipPCHEnabled (true)
.withCompilationEnabled (true)