summaryrefslogtreecommitdiffstats
path: root/build_keyboard.mk
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-02-07 01:31:45 +0100
committerGitHub <noreply@github.com>2017-02-07 01:31:45 +0100
commit4348fb54d6eb80e8d82c0724be647631bdd524d3 (patch)
tree7e51344981e0e9daef487c3cbe7b4508735f91bf /build_keyboard.mk
parentb6ffda484971306264c8c95facf75eec4c85b62a (diff)
parent40abf8bc9ce22cab472f79e3a97c413ac5648986 (diff)
downloadqmk_firmware-4348fb54d6eb80e8d82c0724be647631bdd524d3.tar.gz
qmk_firmware-4348fb54d6eb80e8d82c0724be647631bdd524d3.tar.xz
Merge pull request #960 from ofples/feature/combos
Keyboard combination triggers
Diffstat (limited to 'build_keyboard.mk')
-rw-r--r--build_keyboard.mk5
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