adding Axioma plugins (#165)

This commit is contained in:
dreamer 2022-02-24 16:33:58 +01:00 committed by GitHub
parent e8b0a7a49a
commit 494f6e76ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 40 additions and 0 deletions

View file

@ -375,6 +375,11 @@ PLUGIN_FILES += $(wildcard Autinn/src/*.cpp)
AUTINN_CUSTOM = Chord Vibrato
# --------------------------------------------------------------
# Axioma
PLUGIN_FILES += $(wildcard Axioma/src/*.cpp)
# --------------------------------------------------------------
# BaconPlugs
@ -1113,6 +1118,14 @@ $(BUILD_DIR)/Autinn/%.cpp.o: Autinn/%.cpp
-DpluginInstance=pluginInstance__Autinn \
-Dinit=init__Autinn
$(BUILD_DIR)/Axioma/%.cpp.o: Axioma/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
$(foreach m,$(AXIOMA_CUSTOM),$(call custom_module_names,$(m),Axioma)) \
-DpluginInstance=pluginInstance__Axioma
$(BUILD_DIR)/BaconPlugs/%.cpp.o: BaconPlugs/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"