Adding plugin Sapphire, modules Elastika, Moots.
This commit is contained in:
parent
283ae3d6af
commit
1876ad99f9
6 changed files with 37 additions and 0 deletions
|
@ -892,6 +892,11 @@ PLUGIN_FILES += $(filter-out repelzen/src/repelzen.cpp,$(wildcard repelzen/src/*
|
|||
# modules/types which are present in other plugins
|
||||
REPELZEN_CUSTOM = Blank Mixer Werner tanh_pade
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Sapphire
|
||||
|
||||
PLUGIN_FILES += $(filter-out Sapphire/src/plugin.cpp,$(wildcard Sapphire/src/*.cpp))
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# sonusmodular
|
||||
|
||||
|
@ -2113,6 +2118,13 @@ $(BUILD_DIR)/repelzen/%.cpp.o: repelzen/%.cpp
|
|||
$(foreach m,$(REPELZEN_CUSTOM),$(call custom_module_names,$(m),repelzen)) \
|
||||
-DpluginInstance=pluginInstance__repelzen
|
||||
|
||||
$(BUILD_DIR)/Sapphire/%.cpp.o: Sapphire/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(SAPPHIRE_CUSTOM),$(call custom_module_names,$(m),Sapphire)) \
|
||||
-DpluginInstance=pluginInstance__sapphire
|
||||
|
||||
$(BUILD_DIR)/sonusmodular/%.cpp.o: sonusmodular/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
1
plugins/Sapphire
Submodule
1
plugins/Sapphire
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 07a07e1d599495bb1c4b17575a7d19a1bfa51c0f
|
|
@ -716,6 +716,9 @@ void addThemeMenuItems(Menu*, ModuleTheme*) {}
|
|||
#undef modelWerner
|
||||
#undef tanh_pade
|
||||
|
||||
// Sapphire
|
||||
#include "Sapphire/src/plugin.hpp"
|
||||
|
||||
// sonusmodular
|
||||
#include "sonusmodular/src/sonusmodular.hpp"
|
||||
|
||||
|
@ -850,6 +853,7 @@ Plugin* pluginInstance__Prism;
|
|||
Plugin* pluginInstance__rackwindows;
|
||||
Plugin* pluginInstance__RebelTech;
|
||||
Plugin* pluginInstance__repelzen;
|
||||
Plugin* pluginInstance__sapphire;
|
||||
Plugin* pluginInstance__sonusmodular;
|
||||
Plugin* pluginInstance__stocaudio;
|
||||
extern Plugin* pluginInstance__stoermelder_p1;
|
||||
|
@ -2729,6 +2733,19 @@ static void initStatic__repelzen()
|
|||
}
|
||||
}
|
||||
|
||||
static void initStatic__Sapphire()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
pluginInstance__sapphire = p;
|
||||
|
||||
const StaticPluginLoader spl(p, "Sapphire");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(modelElastika);
|
||||
p->addModel(modelMoots);
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__sonusmodular()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
|
@ -3100,6 +3117,7 @@ void initStaticPlugins()
|
|||
initStatic__rackwindows();
|
||||
initStatic__RebelTech();
|
||||
initStatic__repelzen();
|
||||
initStatic__Sapphire();
|
||||
initStatic__sonusmodular();
|
||||
initStatic__stocaudio();
|
||||
initStatic__stoermelder_p1();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue