Add stubs for built-in plugins
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
067f118f1f
commit
323c500bd0
9 changed files with 223 additions and 0 deletions
|
@ -147,6 +147,11 @@ PLUGIN_FILES += $(wildcard BogaudioModules/src/dsp/filters/*.cpp)
|
|||
# modules which are present in other plugins
|
||||
BOGAUDIO_CUSTOM = ADSR LFO Noise VCA VCO VCF
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Cardinal (built-in)
|
||||
|
||||
PLUGIN_FILES += $(wildcard Cardinal/src/*.cpp)
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Fundamental
|
||||
|
||||
|
@ -295,6 +300,11 @@ $(BUILD_DIR)/BogaudioModules/%.cpp.o: BogaudioModules/%.cpp
|
|||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -DpluginInstance=pluginInstance__BogaudioModules $(foreach m,$(BOGAUDIO_CUSTOM),$(call custom_module_names,$(m),Bogaudio)) -DRACK_SIMD=1 -IBogaudioModules/lib -IBogaudioModules/src/dsp -c -o $@
|
||||
|
||||
$(BUILD_DIR)/Cardinal/%.cpp.o: Cardinal/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -DpluginInstance=pluginInstance__Cardinal -c -o $@
|
||||
|
||||
$(BUILD_DIR)/Fundamental/%.cpp.o: Fundamental/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue