Add ML Modules
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
609f29454d
commit
135715871d
6 changed files with 114 additions and 5 deletions
|
@ -604,6 +604,15 @@ PLUGIN_FILES += $(wildcard MindMeldModular/src/Utilities/*.cpp)
|
|||
# modules/types which are present in other plugins
|
||||
MINDMELD_CUSTOM = printNote
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# ML_modules
|
||||
|
||||
PLUGIN_FILES += $(filter-out ML_modules/src/plugin.cpp,$(wildcard ML_modules/src/*.cpp))
|
||||
PLUGIN_FILES += ML_modules/freeverb/revmodel.cpp
|
||||
|
||||
# modules/types which are present in other plugins
|
||||
ML_CUSTOM = Quant Quantizer QuantizerWidget SH8 allpass comb revmodel
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# MockbaModular
|
||||
|
||||
|
@ -1417,6 +1426,13 @@ $(BUILD_DIR)/MindMeldModular/%.cpp.o: MindMeldModular/%.cpp
|
|||
$(foreach m,$(MINDMELD_CUSTOM),$(call custom_module_names,$(m),MindMeld)) \
|
||||
-DpluginInstance=pluginInstance__MindMeld
|
||||
|
||||
$(BUILD_DIR)/ML_modules/%.cpp.o: ML_modules/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(ML_CUSTOM),$(call custom_module_names,$(m),ML)) \
|
||||
-DpluginInstance=pluginInstance__ML
|
||||
|
||||
$(BUILD_DIR)/MockbaModular/%.cpp.o: MockbaModular/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue