Feature/add hampton harmonics (#170)

* adding Hampton Harmonics

* add custom module in makefile

* custom module
This commit is contained in:
dreamer 2022-02-24 19:35:32 +01:00 committed by GitHub
parent 4c84cc15cf
commit 609f29454d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 49 additions and 0 deletions

View file

@ -496,6 +496,14 @@ PLUGIN_FILES += $(wildcard GoodSheperd/src/*.cpp)
PLUGIN_FILES += $(filter-out GrandeModular/src/plugin.cpp,$(wildcard GrandeModular/src/*.cpp))
# --------------------------------------------------------------
# Hampton Harmonics
PLUGIN_FILES += $(wildcard HamptonHarmonics/src/*.cpp)
# modules/types which are present in other plugins
HAMPTONHARMONICS_CUSTOM = Arp Progress
# --------------------------------------------------------------
# HetrickCV
@ -1290,6 +1298,13 @@ $(BUILD_DIR)/GrandeModular/%.cpp.o: GrandeModular/%.cpp
-Wno-missing-braces \
-Wno-self-assign
$(BUILD_DIR)/HamptonHarmonics/%.cpp.o: HamptonHarmonics/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
$(foreach m,$(HAMPTONHARMONICS_CUSTOM),$(call custom_module_names,$(m),HamptonHarmonics)) \
-DpluginInstance=pluginInstance__HamptonHarmonics
$(BUILD_DIR)/HetrickCV/%.cpp.o: HetrickCV/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"