diff options
author | Joel Challis <git@zvecr.com> | 2021-02-07 13:56:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-07 13:56:08 +0000 |
commit | 02881427692b682287d19fe533c3b84aa7b42a26 (patch) | |
tree | b64dfc778cf652a04b337f8067dac1cd2a1cfe05 /common_features.mk | |
parent | 0c44aa950334a4956dbe1d3f1e4830c13eb38b45 (diff) | |
download | qmk_firmware-02881427692b682287d19fe533c3b84aa7b42a26.tar.gz qmk_firmware-02881427692b682287d19fe533c3b84aa7b42a26.zip |
Migrate mousekey to quantum (#11804)
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk index 6365955a7..7c956cbf2 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -79,6 +79,12 @@ ifeq ($(strip $(FAUXCLICKY_ENABLE)), yes) | |||
79 | SRC += $(QUANTUM_DIR)/fauxclicky.c | 79 | SRC += $(QUANTUM_DIR)/fauxclicky.c |
80 | endif | 80 | endif |
81 | 81 | ||
82 | ifeq ($(strip $(MOUSEKEY_ENABLE)), yes) | ||
83 | OPT_DEFS += -DMOUSEKEY_ENABLE | ||
84 | OPT_DEFS += -DMOUSE_ENABLE | ||
85 | SRC += $(QUANTUM_DIR)/mousekey.c | ||
86 | endif | ||
87 | |||
82 | ifeq ($(strip $(POINTING_DEVICE_ENABLE)), yes) | 88 | ifeq ($(strip $(POINTING_DEVICE_ENABLE)), yes) |
83 | OPT_DEFS += -DPOINTING_DEVICE_ENABLE | 89 | OPT_DEFS += -DPOINTING_DEVICE_ENABLE |
84 | OPT_DEFS += -DMOUSE_ENABLE | 90 | OPT_DEFS += -DMOUSE_ENABLE |