Browse Source

Projucer: Added a missing check for Unity plug-in when adding the plug-in binary copy step option in the Xcode exporter

tags/2021-05-28
ed 7 years ago
parent
commit
e00d990737
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h

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

@@ -586,7 +586,7 @@ protected:
void addXcodePluginInstallPathProperties (PropertyListBuilder& props) void addXcodePluginInstallPathProperties (PropertyListBuilder& props)
{ {
auto isBuildingAnyPlugins = (project.shouldBuildVST() || project.shouldBuildVST3() || project.shouldBuildAU() auto isBuildingAnyPlugins = (project.shouldBuildVST() || project.shouldBuildVST3() || project.shouldBuildAU()
|| project.shouldBuildRTAS() || project.shouldBuildAAX());
|| project.shouldBuildRTAS() || project.shouldBuildAAX() || project.shouldBuildUnityPlugin());
if (isBuildingAnyPlugins) if (isBuildingAnyPlugins)
props.add (new ChoicePropertyComponent (pluginBinaryCopyStepEnabled, "Enable Plugin Copy Step"), props.add (new ChoicePropertyComponent (pluginBinaryCopyStepEnabled, "Enable Plugin Copy Step"),


Loading…
Cancel
Save