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

Relocated the audio plugin wrapper files from the 'extras' folder into src/audio/plugin_client/

This commit is contained in:
Julian Storer 2011-04-11 10:52:39 +01:00
parent 749c29563f
commit 67afa64a4b
28 changed files with 50 additions and 48 deletions

View file

@ -194,8 +194,8 @@ const Array<RelativePath> ProjectExporter::getVSTFilesRequired() const
Array<RelativePath> s;
if (isVST())
{
const char* files[] = { "extras/audio plugins/wrapper/VST/juce_VST_Wrapper.cpp",
"extras/audio plugins/wrapper/VST/juce_VST_Wrapper.mm" };
const char* files[] = { JUCE_PLUGINS_PATH_VST "juce_VST_Wrapper.cpp",
JUCE_PLUGINS_PATH_VST "juce_VST_Wrapper.mm" };
for (int i = 0; i < numElementsInArray (files); ++i)
s.add (getJucePathFromTargetFolder().getChildFile (files[i]));