mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Projucer: fixed a suffix error when generating linux host projects
This commit is contained in:
parent
8462849955
commit
e130ce1428
1 changed files with 13 additions and 6 deletions
|
|
@ -306,15 +306,22 @@ void ProjectExporter::addSettingsForProjectType (const ProjectType& type)
|
|||
|
||||
void ProjectExporter::addVSTPathsIfPluginOrHost()
|
||||
{
|
||||
if (supportsVST() && (project.shouldBuildVST().getValue() || project.isVSTPluginHost()))
|
||||
if (supportsVST())
|
||||
{
|
||||
makefileTargetSuffix = ".so";
|
||||
addVSTFolderToPath (false);
|
||||
if (project.shouldBuildVST().getValue())
|
||||
makefileTargetSuffix = ".so";
|
||||
|
||||
if (project.shouldBuildVST().getValue() || project.isVSTPluginHost())
|
||||
addVSTFolderToPath (false);
|
||||
}
|
||||
if (supportsVST3() && (project.shouldBuildVST3().getValue() || project.isVST3PluginHost()))
|
||||
|
||||
if (supportsVST3())
|
||||
{
|
||||
makefileTargetSuffix = ".so";
|
||||
addVSTFolderToPath (true);
|
||||
if (project.shouldBuildVST3().getValue())
|
||||
makefileTargetSuffix = ".so";
|
||||
|
||||
if (project.shouldBuildVST3().getValue() || project.isVST3PluginHost())
|
||||
addVSTFolderToPath (true);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue