Add Sonus Modular

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-12-04 19:41:30 +00:00
parent 2efe665a6e
commit faf57ff096
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
9 changed files with 64 additions and 0 deletions

View file

@ -482,6 +482,11 @@ PLUGIN_FILES += $(filter-out repelzen/src/repelzen.cpp,$(wildcard repelzen/src/*
# modules/types which are present in other plugins
REPELZEN_CUSTOM = Blank Mixer tanh_pade
# --------------------------------------------------------------
# sonusmodular
PLUGIN_FILES += $(filter-out sonusmodular/src/sonusmodular,$(wildcard sonusmodular/src/*.cpp))
# --------------------------------------------------------------
# ValleyAudio
@ -1014,6 +1019,13 @@ $(BUILD_DIR)/repelzen/%.cpp.o: repelzen/%.cpp
$(foreach m,$(REPELZEN_CUSTOM),$(call custom_module_names,$(m),repelzen)) \
-DpluginInstance=pluginInstance__repelzen
$(BUILD_DIR)/sonusmodular/%.cpp.o: sonusmodular/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
$(foreach m,$(SONUSMODULAR_CUSTOM),$(call custom_module_names,$(m),sonusmodular)) \
-DpluginInstance=pluginInstance__sonusmodular
$(BUILD_DIR)/ValleyAudio/%.cpp.o: ValleyAudio/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"