Merge pull request #960 from ofples/feature/combos

Keyboard combination triggers
This commit is contained in:
Jack Humbert
2017-02-06 19:31:45 -05:00
committed by GitHub
5 changed files with 194 additions and 0 deletions

View File

@@ -144,6 +144,11 @@ ifeq ($(strip $(MIDI_ENABLE)), yes)
SRC += $(QUANTUM_DIR)/process_keycode/process_midi.c
endif
ifeq ($(strip $(COMBO_ENABLE)), yes)
OPT_DEFS += -DCOMBO_ENABLE
SRC += $(QUANTUM_DIR)/process_keycode/process_combo.c
endif
ifeq ($(strip $(VIRTSER_ENABLE)), yes)
OPT_DEFS += -DVIRTSER_ENABLE
endif