adding kocmoc (#176)
This commit is contained in:
parent
7aedbcda62
commit
f462ed8380
7 changed files with 52 additions and 0 deletions
|
@ -569,6 +569,11 @@ endif
|
|||
# modules/types which are present in other plugins
|
||||
JW_CUSTOM = PlayHead Quantizer
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# kocmoc
|
||||
|
||||
PLUGIN_FILES += $(wildcard kocmoc/src/*.cpp)
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# LifeFormModular
|
||||
|
||||
|
@ -1415,6 +1420,13 @@ $(BUILD_DIR)/JW-Modules/%.cpp.o: JW-Modules/%.cpp
|
|||
-Wno-unused-but-set-variable \
|
||||
-Wno-unused-result
|
||||
|
||||
$(BUILD_DIR)/kocmoc/%.cpp.o: kocmoc/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(KOCMOC_CUSTOM),$(call custom_module_names,$(m),kocmoc)) \
|
||||
-DpluginInstance=pluginInstance__kocmoc
|
||||
|
||||
$(BUILD_DIR)/LifeFormModular/%.cpp.o: LifeFormModular/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
1
plugins/kocmoc
Submodule
1
plugins/kocmoc
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit f2a8c19f8aa81769e13d085d69a44de5afaacfaa
|
|
@ -410,6 +410,9 @@ extern Model* modelBlankPanel;
|
|||
#include "JW-Modules/src/JWModules.hpp"
|
||||
#undef modelQuantizer
|
||||
|
||||
// kocmoc
|
||||
#include "kocmoc/src/plugin.hpp"
|
||||
|
||||
// LifeFormModular
|
||||
/* NOTE too much noise in original include, do this a different way
|
||||
// #include "LifeFormModular/src/plugin.hpp"
|
||||
|
@ -659,6 +662,7 @@ Plugin* pluginInstance__HetrickCV;
|
|||
extern Plugin* pluginInstance__ImpromptuModular;
|
||||
Plugin* pluginInstance__ihtsyn;
|
||||
Plugin* pluginInstance__JW;
|
||||
Plugin* pluginInstance__kocmoc;
|
||||
Plugin* pluginInstance__LifeFormModular;
|
||||
Plugin* pluginInstance__LilacLoop;
|
||||
Plugin* pluginInstance__LittleUtils;
|
||||
|
@ -1770,6 +1774,25 @@ static void initStatic__JW()
|
|||
}
|
||||
}
|
||||
|
||||
static void initStatic__kocmoc()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
pluginInstance__kocmoc= p;
|
||||
|
||||
const StaticPluginLoader spl(p, "kocmoc");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(modelSVF_1);
|
||||
p->addModel(modelTRG);
|
||||
p->addModel(modelLADR);
|
||||
p->addModel(modelOP);
|
||||
p->addModel(modelPHASR);
|
||||
p->addModel(modelMUL);
|
||||
p->addModel(modelSKF);
|
||||
p->addModel(modelDDLY);
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__LifeFormModular()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
|
@ -2278,6 +2301,7 @@ void initStaticPlugins()
|
|||
initStatic__ImpromptuModular();
|
||||
initStatic__ihtsyn();
|
||||
initStatic__JW();
|
||||
initStatic__kocmoc();
|
||||
initStatic__LifeFormModular();
|
||||
initStatic__LilacLoop();
|
||||
initStatic__LittleUtils();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue