1
0
Fork 0

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
commit 4348fb54d6
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