mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Added reaper to OSX plugin host types.
This commit is contained in:
parent
2918e8d886
commit
8549139335
1 changed files with 3 additions and 1 deletions
|
|
@ -81,6 +81,7 @@ public:
|
|||
bool isFruityLoops() const noexcept { return type == FruityLoops; }
|
||||
bool isWaveBurner() const noexcept { return type == WaveBurner; }
|
||||
bool isDigitalPerformer() const noexcept { return type == DigitalPerformer; }
|
||||
bool isReaper() const noexcept { return type == Reaper; }
|
||||
|
||||
//==============================================================================
|
||||
static String getHostPath()
|
||||
|
|
@ -109,6 +110,7 @@ private:
|
|||
if (hostFilename.containsIgnoreCase ("Wavelab")) return SteinbergWavelabGeneric;
|
||||
if (hostFilename.containsIgnoreCase ("WaveBurner")) return WaveBurner;
|
||||
if (hostFilename.contains ("Digital Performer")) return DigitalPerformer;
|
||||
if (hostFilename.containsIgnoreCase ("reaper")) return Reaper;
|
||||
|
||||
#elif JUCE_WINDOWS
|
||||
if (hostFilename.containsIgnoreCase ("Live 6.")) return AbletonLive6;
|
||||
|
|
@ -133,7 +135,7 @@ private:
|
|||
if (hostFilename.containsIgnoreCase ("Wavelab")) return SteinbergWavelabGeneric;
|
||||
if (hostFilename.containsIgnoreCase ("rm-host")) return MuseReceptorGeneric;
|
||||
if (hostFilename.startsWithIgnoreCase ("Sam")) return MagixSamplitude;
|
||||
if (hostFilename.startsWith ("FL")) return FruityLoops;
|
||||
if (hostFilename.startsWith ("FL")) return FruityLoops;
|
||||
|
||||
#elif JUCE_LINUX
|
||||
jassertfalse // not yet done!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue