Feature/add hampton harmonics (#170)
* adding Hampton Harmonics * add custom module in makefile * custom module
This commit is contained in:
parent
4c84cc15cf
commit
609f29454d
6 changed files with 49 additions and 0 deletions
|
@ -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 $<"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue