adding Path Set modules (#178)
This commit is contained in:
parent
96e5e49b22
commit
12ea5e9579
7 changed files with 79 additions and 0 deletions
|
|
@ -666,6 +666,11 @@ MSCHACK_CUSTOM_PER_FILE = MAIN_SYNC_CLOCK FILTER_STRUCT FILTER_PARAM_STRUCT OSC_
|
|||
|
||||
PLUGIN_FILES += $(wildcard Orbits/src/*.cpp)
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Path Set
|
||||
|
||||
PLUGIN_FILES += $(wildcard PathSet/src/*.cpp)
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Prism
|
||||
|
||||
|
|
@ -1524,6 +1529,13 @@ $(BUILD_DIR)/Orbits/%.cpp.o: Orbits/%.cpp
|
|||
$(foreach m,$(ORBITS_CUSTOM),$(call custom_module_names,$(m),Orbits)) \
|
||||
-DpluginInstance=pluginInstance__Orbits
|
||||
|
||||
$(BUILD_DIR)/PathSet/%.cpp.o: PathSet/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(PATHSET_CUSTOM),$(call custom_module_names,$(m),PathSet)) \
|
||||
-DpluginInstance=pluginInstance__PathSet
|
||||
|
||||
$(BUILD_DIR)/Prism/%.cpp.o: Prism/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
|
|||
1
plugins/PathSet
Submodule
1
plugins/PathSet
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit d03e8b486deba4740bc7f15ae95a08d823a7d00a
|
||||
|
|
@ -562,6 +562,9 @@ extern Model* modelMaude_221;
|
|||
// Orbits
|
||||
#include "Orbits/src/plugin.hpp"
|
||||
|
||||
// Path Set
|
||||
# include "PathSet/src/plugin.hpp"
|
||||
|
||||
// Prism
|
||||
# include "Prism/src/plugin.hpp"
|
||||
|
||||
|
|
@ -678,6 +681,7 @@ Plugin* pluginInstance__MockbaModular;
|
|||
Plugin* pluginInstance__Mog;
|
||||
extern Plugin* pluginInstance__mscHack;
|
||||
Plugin* pluginInstance__Orbits;
|
||||
Plugin* pluginInstance__PathSet;
|
||||
Plugin* pluginInstance__Prism;
|
||||
Plugin* pluginInstance__rackwindows;
|
||||
Plugin* pluginInstance__repelzen;
|
||||
|
|
@ -2068,6 +2072,20 @@ static void initStatic__Orbits()
|
|||
}
|
||||
}
|
||||
|
||||
static void initStatic__PathSet()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
pluginInstance__PathSet = p;
|
||||
|
||||
const StaticPluginLoader spl(p, "PathSet");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(modelShiftyMod);
|
||||
p->addModel(modelIceTray);
|
||||
p->addModel(modelAstroVibe);
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__Prism()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
|
|
@ -2317,6 +2335,7 @@ void initStaticPlugins()
|
|||
initStatic__Mog();
|
||||
initStatic__mscHack();
|
||||
initStatic__Orbits();
|
||||
initStatic__PathSet();
|
||||
initStatic__Prism();
|
||||
initStatic__rackwindows();
|
||||
initStatic__repelzen();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue