diff options
author | Jonas Gessner <JonasGessner@users.noreply.github.com> | 2021-07-13 19:13:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 10:13:51 -0700 |
commit | 52cfc9259b58a3a11a244fbe35c49c7dd1a9cae0 (patch) | |
tree | 71cbd4b8e2c622a33cbb4d080a08e035901f30c8 /common_features.mk | |
parent | 1ae4d52013c9f38bdc5c208ff8bbfdf173e1dddd (diff) | |
download | qmk_firmware-52cfc9259b58a3a11a244fbe35c49c7dd1a9cae0.tar.gz qmk_firmware-52cfc9259b58a3a11a244fbe35c49c7dd1a9cae0.zip |
[Feature] Key Overrides (#11422)
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk index 8080113ef..74b94ecd7 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -335,6 +335,11 @@ ifeq ($(strip $(PRINTING_ENABLE)), yes) | |||
335 | SRC += $(TMK_DIR)/protocol/serial_uart.c | 335 | SRC += $(TMK_DIR)/protocol/serial_uart.c |
336 | endif | 336 | endif |
337 | 337 | ||
338 | ifeq ($(strip $(KEY_OVERRIDE_ENABLE)), yes) | ||
339 | OPT_DEFS += -DKEY_OVERRIDE_ENABLE | ||
340 | SRC += $(QUANTUM_DIR)/process_keycode/process_key_override.c | ||
341 | endif | ||
342 | |||
338 | ifeq ($(strip $(SERIAL_LINK_ENABLE)), yes) | 343 | ifeq ($(strip $(SERIAL_LINK_ENABLE)), yes) |
339 | SERIAL_SRC := $(wildcard $(SERIAL_PATH)/protocol/*.c) | 344 | SERIAL_SRC := $(wildcard $(SERIAL_PATH)/protocol/*.c) |
340 | SERIAL_SRC += $(wildcard $(SERIAL_PATH)/system/*.c) | 345 | SERIAL_SRC += $(wildcard $(SERIAL_PATH)/system/*.c) |