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:
parent
f5dafc4a3c
commit
14d60966dc
3 changed files with 6 additions and 5 deletions
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue