Add Autinn modules, gplv3+ licensed

This commit is contained in:
falkTX 2022-01-24 00:42:23 +00:00
parent c4609cba06
commit 3ea9ee075c
7 changed files with 97 additions and 0 deletions

View file

@ -361,6 +361,13 @@ ARIA_CUSTOM = Blank
# PLUGIN_FILES += AudibleInstruments/eurorack/streams/vactrol.cc
# PLUGIN_FILES += AudibleInstruments/eurorack/streams/compressor.cc
# --------------------------------------------------------------
# Autinn
PLUGIN_FILES += $(wildcard Autinn/src/*.cpp)
AUTINN_CUSTOM = Chord Vibrato
# --------------------------------------------------------------
# BaconPlugs
@ -977,6 +984,14 @@ $(BUILD_DIR)/AudibleInstruments/%.o: AudibleInstruments/%
-Wno-class-memaccess \
-Wno-unused-local-typedefs
$(BUILD_DIR)/Autinn/%.cpp.o: Autinn/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
$(foreach m,$(AUTINN_CUSTOM),$(call custom_module_names,$(m),Autinn)) \
-DpluginInstance=pluginInstance__Autinn \
-Dinit=init__Autinn
$(BUILD_DIR)/BaconPlugs/%.cpp.o: BaconPlugs/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"