* Add CVfunk plugin

Added CVfunk plugin

* added CVfunk plugin

added CVfunk plugin

* removed CVfunk

removed CVfunk

* Added CVfunk as submodule

Added CVfunk as submodule

* Update .gitmodules remove duplicate CVfunk

removed extra CVfunk. my mistake

* remove extra spaces

removed extra spaces I put in by accident.

* Update Makefile

* Define modelSteps

redefine modelSteps so it doesn't conflict with other modules

* Fixerd defining of overlapping module name

Fixed definition of overlapping module name

* Fixed custom name declaration

Fixed custom name declatation

* Update Makefile

Fixed module name reference to CVfunk instead of cf.

* Add CVfunk to readme

Added CVfunk

* Update LICENSES.md

Added CVfunk

* Update LICENSES.md

added CVfunk artwork license

* Update CVfunk

update submodule linker, decreased CPU consumption to optimize better for Cardinal
This commit is contained in:
CV funk 2024-03-08 16:09:46 +01:00 committed by GitHub
parent 4b3b458ffa
commit 7f1a48d684
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 48 additions and 0 deletions

View file

@ -645,6 +645,14 @@ PLUGIN_FILES += $(filter-out cf/src/plugin.cpp,$(wildcard cf/src/*.cpp))
# modules/types which are present in other plugins
CF_CUSTOM = $(DRWAV)
# --------------------------------------------------------------
# CVfunk
PLUGIN_FILES += $(filter-out CVfunk/src/plugin.cpp,$(wildcard CVfunk/src/*.cpp))
# modules/types which are present in other plugins
CVFUNK_CUSTOM = Steps
# --------------------------------------------------------------
# dBiz
@ -2199,6 +2207,13 @@ $(BUILD_DIR)/cf/src/%.cpp.o: cf/src/%.cpp
-DpluginInstance=pluginInstance__cf \
-Wno-misleading-indentation
$(BUILD_DIR)/CVfunk/src/%.cpp.o: CVfunk/src/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
$(foreach m,$(CVFUNK_CUSTOM),$(call custom_module_names,$(m),CVfunk)) \
-DpluginInstance=pluginInstance__CVfunk
$(BUILD_DIR)/ChowDSP/%.cpp.o: ChowDSP/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"