summaryrefslogtreecommitdiffstats
path: root/common_features.mk
diff options
context:
space:
mode:
authorJason Stillwell <dragonfax@gmail.com>2018-03-16 21:41:01 +0100
committerJack Humbert <jack.humb@gmail.com>2018-03-16 21:41:01 +0100
commit00b4dce605bc44a2ee6babaf93dbe3640e735d2e (patch)
treef146f9f64439a7ea0b16bf91f5f7e89e172a4368 /common_features.mk
parentbb5c98699fe622a8978c6fc62dc5829d227fdec5 (diff)
downloadqmk_firmware-00b4dce605bc44a2ee6babaf93dbe3640e735d2e.tar.gz
qmk_firmware-00b4dce605bc44a2ee6babaf93dbe3640e735d2e.tar.xz
Rule to enable Modifiers with Auto-Shift (#2542)
* Re-enable modifiers with auto-shift * Auto-shift modifiers rule * missed a line * Documentation * fixing whitespace
Diffstat (limited to 'common_features.mk')
-rw-r--r--common_features.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk
index 1c0b3546a..9b99edd75 100644
--- a/common_features.mk
+++ b/common_features.mk
@@ -132,6 +132,9 @@ endif
ifeq ($(strip $(AUTO_SHIFT_ENABLE)), yes)
OPT_DEFS += -DAUTO_SHIFT_ENABLE
SRC += $(QUANTUM_DIR)/process_keycode/process_auto_shift.c
+ ifeq ($(strip $(AUTO_SHIFT_MODIFIERS)), yes)
+ OPT_DEFS += -DAUTO_SHIFT_MODIFIERS
+ endif
endif
ifeq ($(strip $(SERIAL_LINK_ENABLE)), yes)