diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-02-06 19:31:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-06 19:31:45 -0500 |
commit | 4348fb54d6eb80e8d82c0724be647631bdd524d3 (patch) | |
tree | 7e51344981e0e9daef487c3cbe7b4508735f91bf /build_keyboard.mk | |
parent | b6ffda484971306264c8c95facf75eec4c85b62a (diff) | |
parent | 40abf8bc9ce22cab472f79e3a97c413ac5648986 (diff) | |
download | qmk_firmware-4348fb54d6eb80e8d82c0724be647631bdd524d3.tar.gz |
Merge pull request #960 from ofples/feature/combos
Keyboard combination triggers
Diffstat (limited to 'build_keyboard.mk')
-rw-r--r-- | build_keyboard.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build_keyboard.mk b/build_keyboard.mk index b85557d4a..2c64e93a2 100644 --- a/build_keyboard.mk +++ b/build_keyboard.mk @@ -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 |