Add BaconPlugs
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
62af644a49
commit
9986267165
4 changed files with 65 additions and 0 deletions
|
@ -339,6 +339,13 @@ PLUGIN_FILES += AudibleInstruments/eurorack/streams/svf.cc
|
|||
PLUGIN_FILES += AudibleInstruments/eurorack/streams/vactrol.cc
|
||||
PLUGIN_FILES += AudibleInstruments/eurorack/streams/compressor.cc
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# BaconPlugs
|
||||
|
||||
PLUGIN_FILES += $(filter-out BaconPlugs/src/BaconPlugs.cpp,$(wildcard BaconPlugs/src/*.cpp))
|
||||
PLUGIN_FILES += $(wildcard BaconPlugs/libs/midifile/src/*.cpp)
|
||||
PLUGIN_FILES += $(wildcard BaconPlugs/libs/open303-code/Source/DSPCode/*.cpp)
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Befaco
|
||||
|
||||
|
@ -821,6 +828,18 @@ $(BUILD_DIR)/AudibleInstruments/%.o: AudibleInstruments/%
|
|||
-Wno-class-memaccess \
|
||||
-Wno-unused-local-typedefs
|
||||
|
||||
$(BUILD_DIR)/BaconPlugs/%.cpp.o: BaconPlugs/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(BACON_CUSTOM),$(call custom_module_names,$(m),BaconPlugs)) \
|
||||
-DpluginInstance=pluginInstance__Bacon \
|
||||
-DDARK_BACON \
|
||||
-IBaconPlugs/libs/midifile/include \
|
||||
-IBaconPlugs/libs/open303-code/Source/DSPCode \
|
||||
-Wno-array-bounds \
|
||||
-Wno-strict-aliasing
|
||||
|
||||
$(BUILD_DIR)/Befaco/%.cpp.o: Befaco/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue