summaryrefslogtreecommitdiff
path: root/common_features.mk
diff options
context:
space:
mode:
authorXScorpion2 <rcalt2vt@gmail.com>2019-04-29 22:21:46 -0500
committerDrashna Jaelre <drashna@live.com>2019-04-29 22:11:57 -0700
commit38c65e4928cac8d178855677dc1d5bccd744d0cb (patch)
tree05249c42714ba1baeebe6f7b4babe24c0929bfbf /common_features.mk
parentc941ef0f0993a3fcb63e6d42e926bb8bd1f1a81f (diff)
Simple extended space cadet (#5277)
* Simplifying and Extending Space Cadet to work on Ctrl and Alt keys * PR Review feedback * Reverting back to keycodes
Diffstat (limited to 'common_features.mk')
-rw-r--r--common_features.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk
index fbfbc3ebc6..6d03f4f405 100644
--- a/common_features.mk
+++ b/common_features.mk
@@ -343,3 +343,9 @@ ifeq ($(strip $(OLED_DRIVER_ENABLE)), yes)
QUANTUM_LIB_SRC += i2c_master.c
SRC += oled_driver.c
endif
+
+SPACE_CADET_ENABLE ?= yes
+ifeq ($(strip $(SPACE_CADET_ENABLE)), yes)
+ SRC += $(QUANTUM_DIR)/process_keycode/process_space_cadet.c
+ OPT_DEFS += -DSPACE_CADET_ENABLE
+endif