Add Myth modules
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
0397948a41
commit
952df617e8
7 changed files with 42 additions and 1 deletions
|
@ -727,6 +727,11 @@ PLUGIN_FILES += $(filter-out MSM/src/MSM.cpp,$(wildcard MSM/src/*.cpp))
|
|||
# modules/types which are present in other plugins
|
||||
MSM_CUSTOM = ADSR BlankPanel Delay LFO LowFrequencyOscillator Mult Noise OP VCA VCO sawTable triTable
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# myth-modules
|
||||
|
||||
PLUGIN_FILES += $(filter-out myth-modules/src/plugin.cpp,$(wildcard myth-modules/src/*.cpp))
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Nonlinear Circuits
|
||||
|
||||
|
@ -1709,6 +1714,13 @@ $(BUILD_DIR)/MSM/%.cpp.o: MSM/%.cpp
|
|||
-DpluginInstance=pluginInstance__MSM \
|
||||
-DDARKTHEME
|
||||
|
||||
$(BUILD_DIR)/myth-modules/%.cpp.o: myth-modules/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(MYTH_MODULES_CUSTOM),$(call custom_module_names,$(m),myth_modules)) \
|
||||
-DpluginInstance=pluginInstance__myth_modules
|
||||
|
||||
$(BUILD_DIR)/nonlinearcircuits/%.cpp.o: nonlinearcircuits/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue