diff options
author | Jason Stillwell <dragonfax@gmail.com> | 2018-03-16 13:41:01 -0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-03-16 16:41:01 -0400 |
commit | 00b4dce605bc44a2ee6babaf93dbe3640e735d2e (patch) | |
tree | f146f9f64439a7ea0b16bf91f5f7e89e172a4368 /common_features.mk | |
parent | bb5c98699fe622a8978c6fc62dc5829d227fdec5 (diff) | |
download | qmk_firmware-00b4dce605bc44a2ee6babaf93dbe3640e735d2e.tar.gz qmk_firmware-00b4dce605bc44a2ee6babaf93dbe3640e735d2e.zip |
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.mk | 3 |
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 | |||
132 | ifeq ($(strip $(AUTO_SHIFT_ENABLE)), yes) | 132 | ifeq ($(strip $(AUTO_SHIFT_ENABLE)), yes) |
133 | OPT_DEFS += -DAUTO_SHIFT_ENABLE | 133 | OPT_DEFS += -DAUTO_SHIFT_ENABLE |
134 | SRC += $(QUANTUM_DIR)/process_keycode/process_auto_shift.c | 134 | SRC += $(QUANTUM_DIR)/process_keycode/process_auto_shift.c |
135 | ifeq ($(strip $(AUTO_SHIFT_MODIFIERS)), yes) | ||
136 | OPT_DEFS += -DAUTO_SHIFT_MODIFIERS | ||
137 | endif | ||
135 | endif | 138 | endif |
136 | 139 | ||
137 | ifeq ($(strip $(SERIAL_LINK_ENABLE)), yes) | 140 | ifeq ($(strip $(SERIAL_LINK_ENABLE)), yes) |