diff options
author | That-Canadian <poole.chris.11@gmail.com> | 2017-08-13 14:11:40 -0400 |
---|---|---|
committer | That-Canadian <poole.chris.11@gmail.com> | 2017-08-13 14:11:40 -0400 |
commit | 1631f7cd798dcf428404977e441d7e5b65fe81ce (patch) | |
tree | 1c2c1d85598d7b1332e2e82b6276a49b2dc2d2b0 /common_features.mk | |
parent | f64d4242ada746a1d7bd7aef9acf8f3cf8a5ba6f (diff) | |
parent | 09e5885e45cf37c0651744770cd99b5b744ba894 (diff) |
Merge branch 'master' into minidox
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk index 0adf81afac..f405d5c07b 100644 --- a/common_features.mk +++ b/common_features.mk @@ -104,6 +104,11 @@ ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) SRC += $(QUANTUM_DIR)/process_keycode/process_tap_dance.c endif +ifeq ($(strip $(KEY_LOCK_ENABLE)), yes) + OPT_DEFS += -DKEY_LOCK_ENABLE + SRC += $(QUANTUM_DIR)/process_keycode/process_key_lock.c +endif + ifeq ($(strip $(PRINTING_ENABLE)), yes) OPT_DEFS += -DPRINTING_ENABLE SRC += $(QUANTUM_DIR)/process_keycode/process_printer.c @@ -156,4 +161,4 @@ QUANTUM_SRC:= \ ifndef CUSTOM_MATRIX QUANTUM_SRC += $(QUANTUM_DIR)/matrix.c -endif
\ No newline at end of file +endif |