Add EnigmaCurry (#573)
* Build EnigmaCurry plugin * Add to docs/LICENSES.md * add back the bogaudio namespace for modelPulse - still seems necessary. * Revert "add back the bogaudio namespace for modelPulse - still seems necessary." This reverts commit 2b7c68cc45dd435093894aaf51590f40c58493f4. * Adds artwork and font license information and add to main README.
This commit is contained in:
parent
3ede7c2b05
commit
97f6eb6a1c
6 changed files with 50 additions and 0 deletions
|
@ -669,6 +669,13 @@ PLUGIN_FILES += $(wildcard DrumKit/deps/SynthDevKit/src/*.cpp)
|
|||
# modules/types which are present in other plugins
|
||||
DRUMKIT_CUSTOM = ADSR Envelope LowFrequencyOscillator
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# EnigmaCurry
|
||||
|
||||
PLUGIN_FILES += $(filter-out EnigmaCurry/src/plugin.cpp,$(wildcard EnigmaCurry/src/*.cpp))
|
||||
# modules/types which are present in other plugins
|
||||
ENIGMACURRY_CUSTOM = Pulse
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# ESeries
|
||||
|
||||
|
@ -2216,6 +2223,14 @@ $(BUILD_DIR)/DrumKit/%.cpp.o: DrumKit/%.cpp
|
|||
-Dinit=init__DrumKit \
|
||||
-Wno-sign-compare
|
||||
|
||||
$(BUILD_DIR)/EnigmaCurry/src/%.cpp.o: EnigmaCurry/src/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) $(NOFINITE_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(ENIGMACURRY_CUSTOM),$(call custom_module_names,$(m),EnigmaCurry)) \
|
||||
-DpluginInstance=pluginInstance__EnigmaCurry \
|
||||
-Wno-misleading-indentation
|
||||
|
||||
$(BUILD_DIR)/ESeries/%.cpp.o: ESeries/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue