Add WhatTheRack
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
62b55920c9
commit
19986c3023
7 changed files with 43 additions and 0 deletions
|
|
@ -866,6 +866,11 @@ VALLEYAUDIO_CUSTOM_PER_FILE = TempoKnob
|
|||
|
||||
PLUGIN_FILES += $(filter-out voxglitch/src/plugin.cpp,$(wildcard voxglitch/src/*.cpp))
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# WhatTheRack
|
||||
|
||||
PLUGIN_FILES += $(filter-out WhatTheRack/src/plugin.cpp,$(wildcard WhatTheRack/src/*.cpp))
|
||||
|
||||
# modules/types which are present in other plugins
|
||||
VOXGLITCH_CUSTOM = $(DRWAV) AudioFile Looper Readout
|
||||
VOXGLITCH_CUSTOM_PER_FILE = AudioBuffer GateSequencer Grain Sequencer SequencerDisplay VoltageSequencer
|
||||
|
|
@ -1761,6 +1766,13 @@ $(BUILD_DIR)/voxglitch/%.cpp.o: voxglitch/%.cpp
|
|||
-DpluginInstance=pluginInstance__Voxglitch \
|
||||
-DSKIP_MINGW_FORMAT
|
||||
|
||||
$(BUILD_DIR)/WhatTheRack/%.cpp.o: WhatTheRack/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(WHATTHERACK_CUSTOM),$(call custom_module_names,$(m),WhatTheRack)) \
|
||||
-DpluginInstance=pluginInstance__WhatTheRack
|
||||
|
||||
$(BUILD_DIR)/ZetaCarinaeModules/%.cpp.o: ZetaCarinaeModules/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
|
|||
1
plugins/WhatTheRack
Submodule
1
plugins/WhatTheRack
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit c10856fd0e02c057a11c3c15b345fcea8b0abce3
|
||||
|
|
@ -665,6 +665,9 @@ extern Model* modelBlankPanel;
|
|||
#include "voxglitch/src/plugin.hpp"
|
||||
#undef modelLooper
|
||||
|
||||
// WhatTheRack
|
||||
#include "WhatTheRack/src/WhatTheRack.hpp"
|
||||
|
||||
// ZetaCarinaeModules
|
||||
#include "ZetaCarinaeModules/src/plugin.hpp"
|
||||
|
||||
|
|
@ -750,6 +753,7 @@ Plugin* pluginInstance__stocaudio;
|
|||
Plugin* pluginInstance__unless_modules;
|
||||
Plugin* pluginInstance__ValleyAudio;
|
||||
Plugin* pluginInstance__Voxglitch;
|
||||
Plugin* pluginInstance__WhatTheRack;
|
||||
Plugin* pluginInstance__ZetaCarinaeModules;
|
||||
Plugin* pluginInstance__ZZC;
|
||||
#endif // NOPLUGINS
|
||||
|
|
@ -2487,6 +2491,20 @@ static void initStatic__Voxglitch()
|
|||
}
|
||||
}
|
||||
|
||||
static void initStatic__WhatTheRack()
|
||||
{
|
||||
Plugin* p = new Plugin;
|
||||
pluginInstance__WhatTheRack = p;
|
||||
|
||||
const StaticPluginLoader spl(p, "WhatTheRack");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(modelWhatTheRack);
|
||||
p->addModel(modelWhatTheMod);
|
||||
p->addModel(modelWhatTheJack);
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__ZetaCarinaeModules()
|
||||
{
|
||||
Plugin* p = new Plugin;
|
||||
|
|
@ -2591,6 +2609,7 @@ void initStaticPlugins()
|
|||
initStatic__unless_modules();
|
||||
initStatic__ValleyAudio();
|
||||
initStatic__Voxglitch();
|
||||
initStatic__WhatTheRack();
|
||||
initStatic__ZetaCarinaeModules();
|
||||
initStatic__ZZC();
|
||||
#endif // NOPLUGINS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue