1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-26 02:14:22 +00:00

Introjucer: RTAS path fix.

This commit is contained in:
jules 2012-10-10 14:18:52 +01:00
parent dbf0aced62
commit 877ac3b683

View file

@ -360,9 +360,12 @@ namespace RTASHelpers
exporter.msvcExtraPreprocessorDefs.set ("JucePlugin_WinBag_path", winbag);
String msvcPathToRTASFolder (exporter.getJucePathFromTargetFolder()
.getChildFile ("modules/juce_audio_plugin_client/RTAS")
.toWindowsStyle() + "\\");
RelativePath juceFolder (exporter.getJucePathFromTargetFolder());
if (juceFolder.getFileName() != "modules")
juceFolder = juceFolder.getChildFile ("modules");
String msvcPathToRTASFolder (juceFolder.getChildFile ("juce_audio_plugin_client/RTAS")
.toWindowsStyle() + "\\");
exporter.msvcDelayLoadedDLLs = "DAE.dll; DigiExt.dll; DSI.dll; PluginLib.dll; DSPManager.dll";