1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00

Added support for VST3 SDK 3.6.7

You will need to update your VST3 SDK!
This commit is contained in:
hogliux 2017-03-13 17:15:57 +00:00
parent f5dafc4a3c
commit 14d60966dc
3 changed files with 6 additions and 5 deletions

View file

@ -329,7 +329,10 @@ void ProjectExporter::addVST3FolderToPath()
const String vst3Folder (getVST3PathValue().toString());
if (vst3Folder.isNotEmpty())
addToExtraSearchPaths (RelativePath (vst3Folder, RelativePath::projectFolder), 0);
{
addToExtraSearchPaths (RelativePath (vst3Folder, RelativePath::projectFolder).getChildFile ("VST2_SDK"), 0);
addToExtraSearchPaths (RelativePath (vst3Folder, RelativePath::projectFolder).getChildFile ("VST3_SDK"), 0);
}
}
void ProjectExporter::addAAXFoldersToPath()

View file

@ -277,7 +277,7 @@ bool StoredSettings::isGlobalPathValid (const File& relativeTo, const Identifier
if (key == Ids::vst3Path)
{
fileToCheckFor = "base/source/baseiids.cpp";
fileToCheckFor = "VST3_SDK/base/source/baseiids.cpp";
}
else if (key == Ids::rtasPath)
{

View file

@ -85,14 +85,12 @@
#include <public.sdk/source/vst/vsteditcontroller.h>
#else
#include <base/source/baseiids.cpp>
#include <base/source/fatomic.cpp>
#include <base/source/fbuffer.cpp>
#include <base/source/fdebug.cpp>
#include <base/source/fobject.cpp>
#include <base/source/frect.cpp>
#include <base/source/fstreamer.cpp>
#include <base/source/fstring.cpp>
#include <base/source/fthread.cpp>
#include <base/source/flock.cpp>
#include <base/source/updatehandler.cpp>
#include <pluginterfaces/base/conststringtable.cpp>
#include <pluginterfaces/base/funknown.cpp>