1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added some comments.

This commit is contained in:
jules 2013-12-26 10:49:51 +00:00
parent a052b648ec
commit 4c392e6f02
2 changed files with 17 additions and 10 deletions

View file

@ -55,12 +55,6 @@
#endif
//==============================================================================
/* These files come with the Steinberg VST SDK - to get them, you'll need to
visit the Steinberg website and jump through some hoops to sign up as a
VST developer.
Then, you'll need to make sure your include path contains your "vstsdk2.4" directory.
*/
#ifndef _MSC_VER
#define __cdecl
#endif
@ -73,7 +67,15 @@
#pragma clang diagnostic ignored "-Wdeprecated-writable-strings"
#endif
// VSTSDK V2.4 includes..
/* These files come with the Steinberg VST SDK - to get them, you'll need to
visit the Steinberg website and agree to whatever is currently required to
get them. The best version to get is the VST3 SDK, which also contains
the older VST2.4 files.
Then, you'll need to make sure your include path contains your "VST SDK3"
directory (or whatever you've named it on your machine). The introjucer has
a special box for setting this path.
*/
#include <public.sdk/source/vst2.x/audioeffectx.h>
#include <public.sdk/source/vst2.x/aeffeditor.h>
#include <public.sdk/source/vst2.x/audioeffectx.cpp>

View file

@ -43,9 +43,14 @@
#pragma clang diagnostic ignored "-Wshadow"
#endif
// Got an include error here? If so, you'll need to install the VST3 SDK somewhere,
// and use the introjucer or your IDE to add it to your include path. The introjucer
// has a special box for specifying this path for each export target.
/* These files come with the Steinberg VST3 SDK - to get them, you'll need to
visit the Steinberg website and agree to whatever is currently required to
get them.
Then, you'll need to make sure your include path contains your "VST SDK3"
directory (or whatever you've named it on your machine). The introjucer has
a special box for setting this path.
*/
#include <base/source/baseiids.cpp>
#include <base/source/fatomic.cpp>
#include <base/source/fbuffer.cpp>