Add mscHack plugin modules (needs upstream v2 fixes)

This commit is contained in:
falkTX 2021-11-10 14:17:35 +00:00
parent e1accb31f2
commit 5a7a9b21f4
5 changed files with 93 additions and 4 deletions

View file

@ -418,6 +418,11 @@ PLUGIN_FILES += $(wildcard MindMeldModular/src/Utilities/*.cpp)
# modules/types which are present in other plugins
MINDMELD_CUSTOM = printNote
# --------------------------------------------------------------
# mscHack
PLUGIN_FILES += $(wildcard mscHack/src/*.cpp)
# --------------------------------------------------------------
# rackwindows
@ -875,6 +880,14 @@ $(BUILD_DIR)/MindMeldModular/MindMeldModular.cpp.o: MindMeldModular/src/MindMeld
-DpluginInstance=pluginInstance__MindMeld \
-Dinit=init__MindMeld
$(BUILD_DIR)/mscHack/%.cpp.o: mscHack/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
$(foreach m,$(MINDMELD_CUSTOM),$(call custom_module_names,$(m),JW)) \
-DthePlugin=pluginInstance__mscHack \
-Dinit=init__mscHack
$(BUILD_DIR)/rackwindows/%.cpp.o: rackwindows/%.cpp
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"