Add DHE modules
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
80bda51e7c
commit
43bf3abe0e
7 changed files with 114 additions and 13 deletions
|
@ -655,6 +655,11 @@ PLUGIN_FILES += $(filter-out dBiz/src/plugin.cpp,$(wildcard dBiz/src/*.cpp))
|
|||
DBIZ_CUSTOM = Chord DarkDefaultItem Divider FourSeq FourSeqWidget OrangeLight VCA4 Wavefolder darkPanelID lightPanelID
|
||||
DBIZ_CUSTOM_PER_FILE = LERP MultiFilter Oscillator calcOutput sineOsc subBank
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# DHE-Modules
|
||||
|
||||
PLUGIN_FILES += $(filter-out DHE-Modules/src/plugin.cpp,$(wildcard DHE-Modules/src/modules/*/init.cpp))
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# DrumKit
|
||||
|
||||
|
@ -1390,6 +1395,7 @@ RESOURCE_FILES += BaconPlugs/res/midi/chopin
|
|||
RESOURCE_FILES += BaconPlugs/res/midi/debussy
|
||||
RESOURCE_FILES += BaconPlugs/res/midi/goldberg
|
||||
RESOURCE_FILES += cf/playeroscs
|
||||
RESOURCE_FILES += DHE-Modules/svg
|
||||
RESOURCE_FILES += DrumKit/res/samples
|
||||
RESOURCE_FILES += MindMeldModular/res/ShapeMaster/CommunityPresets
|
||||
RESOURCE_FILES += MindMeldModular/res/ShapeMaster/CommunityShapes
|
||||
|
@ -2216,6 +2222,14 @@ $(BUILD_DIR)/dBiz/src/%.cpp.o: dBiz/src/%.cpp
|
|||
$(foreach m,$(DBIZ_CUSTOM_PER_FILE),$(call custom_per_file_names,$(m),dBiz_$(shell basename $*))) \
|
||||
-DpluginInstance=pluginInstance__dBiz
|
||||
|
||||
$(BUILD_DIR)/DHE-Modules/src/%.cpp.o: DHE-Modules/src/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(DHE_CUSTOM),$(call custom_module_names,$(m),DHE)) \
|
||||
-DpluginInstance=pluginInstance__DHE \
|
||||
-IDHE-Modules/src
|
||||
|
||||
$(BUILD_DIR)/DrumKit/%.cpp.o: DrumKit/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue