Browse Source

Introjucer: fix for RTAS path when exporting VC projects.

tags/2021-05-28
jules 11 years ago
parent
commit
2c3d639d91
2 changed files with 3 additions and 0 deletions
  1. +2
    -0
      extras/Introjucer/Source/Project Saving/jucer_ProjectExporter.h
  2. +1
    -0
      extras/Introjucer/Source/Project/jucer_AudioPluginModule.h

+ 2
- 0
extras/Introjucer/Source/Project Saving/jucer_ProjectExporter.h View File

@@ -102,6 +102,8 @@ public:
Value getUserNotes() { return getSetting (Ids::userNotes); }
// NB: this is the path to the parent "modules" folder that contains the named module, not the
// module folder itself.
Value getPathForModuleValue (const String& moduleID);
String getPathForModuleString (const String& moduleID) const;
void removePathForModule (const String& moduleID);


+ 1
- 0
extras/Introjucer/Source/Project/jucer_AudioPluginModule.h View File

@@ -396,6 +396,7 @@ namespace RTASHelpers
RelativePath modulePath (exporter.rebaseFromProjectFolderToBuildTarget (RelativePath (exporter.getPathForModuleString ("juce_audio_plugin_client"),
RelativePath::projectFolder)
.getChildFile ("juce_audio_plugin_client")
.getChildFile ("RTAS")));
for (ProjectExporter::ConfigIterator config (exporter); config.next();)


Loading…
Cancel
Save