Remove CLK and CLK/N from MIDI-CV module
We have better timing sources, let's use them and leave this legacy MIDI pulses silliness behind. Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
2745482670
commit
ef2058acee
3 changed files with 163 additions and 2 deletions
|
@ -91,6 +91,7 @@ RACK_FILES += CardinalModuleWidget.cpp
|
|||
RACK_FILES += override/blendish.c
|
||||
RACK_FILES += override/Engine.cpp
|
||||
RACK_FILES += override/MenuBar.cpp
|
||||
RACK_FILES += override/MIDI_CV.cpp
|
||||
RACK_FILES += override/Scene.cpp
|
||||
RACK_FILES += override/asset.cpp
|
||||
RACK_FILES += override/context.cpp
|
||||
|
@ -116,6 +117,7 @@ IGNORED_FILES += Rack/src/rtaudio.cpp
|
|||
IGNORED_FILES += Rack/src/rtmidi.cpp
|
||||
IGNORED_FILES += Rack/src/app/MenuBar.cpp
|
||||
IGNORED_FILES += Rack/src/app/Scene.cpp
|
||||
IGNORED_FILES += Rack/src/core/MIDI_CV.cpp
|
||||
IGNORED_FILES += Rack/src/engine/Engine.cpp
|
||||
IGNORED_FILES += Rack/src/window/Window.cpp
|
||||
|
||||
|
@ -173,6 +175,11 @@ $(BUILD_DIR)/%.c.o: %.c
|
|||
@echo "Compiling $<"
|
||||
$(SILENT)$(CC) $< $(BUILD_C_FLAGS) -c -o $@
|
||||
|
||||
$(BUILD_DIR)/override/MIDI_CV.cpp.o: override/MIDI_CV.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -UPRIVATE -c -o $@
|
||||
|
||||
$(BUILD_DIR)/Rack/src/core/Blank.cpp.o: Rack/src/core/Blank.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue