adding unless_modules (#209)
* adding unless_modules * fix makefiles * add name to readme * update docs/LICENSES.md * update submodule
This commit is contained in:
parent
cafceb6617
commit
b57cb219b2
6 changed files with 51 additions and 0 deletions
|
|
@ -762,6 +762,12 @@ PLUGIN_FILES += $(filter-out sonusmodular/src/sonusmodular.cpp,$(wildcard sonusm
|
|||
|
||||
PLUGIN_FILES += $(filter-out stocaudio/src/plugin.cpp,$(wildcard stocaudio/src/*.cpp))
|
||||
|
||||
# --------------------------------------------------------------
|
||||
|
||||
# unless_modules
|
||||
|
||||
PLUGIN_FILES += $(filter-out unless_modules/src/unless.cpp,$(wildcard unless_modules/src/*.cpp))
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# ValleyAudio
|
||||
|
||||
|
|
@ -1689,6 +1695,13 @@ $(BUILD_DIR)/stocaudio/%.cpp.o: stocaudio/%.cpp
|
|||
$(foreach m,$(STOCAUDIO_CUSTOM),$(call custom_module_names,$(m),stocaudio)) \
|
||||
-DpluginInstance=pluginInstance__stocaudio
|
||||
|
||||
$(BUILD_DIR)/unless_modules/%.cpp.o: unless_modules/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(UNLESS_MODULES_CUSTOM),$(call custom_module_names,$(m),unless_modules)) \
|
||||
-DpluginInstance=pluginInstance__unless_modules
|
||||
|
||||
$(BUILD_DIR)/ValleyAudio/%.cpp.o: ValleyAudio/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue