Adding plugin Sapphire, modules Elastika, Moots.

This commit is contained in:
Don Cross 2022-12-06 18:54:17 -05:00 committed by Filipe Coelho
parent 283ae3d6af
commit 1876ad99f9
6 changed files with 37 additions and 0 deletions

View file

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