diff options
Diffstat (limited to 'common_features.mk')
| -rw-r--r-- | common_features.mk | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/common_features.mk b/common_features.mk index 2c24eb28c..425d5b473 100644 --- a/common_features.mk +++ b/common_features.mk | |||
| @@ -420,6 +420,12 @@ ifeq ($(strip $(LEADER_ENABLE)), yes) | |||
| 420 | OPT_DEFS += -DLEADER_ENABLE | 420 | OPT_DEFS += -DLEADER_ENABLE |
| 421 | endif | 421 | endif |
| 422 | 422 | ||
| 423 | |||
| 424 | ifeq ($(strip $(DIP_SWITCH_ENABLE)), yes) | ||
| 425 | SRC += $(QUANTUM_DIR)/dip_switch.c | ||
| 426 | OPT_DEFS += -DDIP_SWITCH_ENABLE | ||
| 427 | endif | ||
| 428 | |||
| 423 | include $(DRIVER_PATH)/qwiic/qwiic.mk | 429 | include $(DRIVER_PATH)/qwiic/qwiic.mk |
| 424 | 430 | ||
| 425 | QUANTUM_SRC:= \ | 431 | QUANTUM_SRC:= \ |
| @@ -505,12 +511,13 @@ ifeq ($(strip $(MAGIC_ENABLE)), yes) | |||
| 505 | OPT_DEFS += -DMAGIC_KEYCODE_ENABLE | 511 | OPT_DEFS += -DMAGIC_KEYCODE_ENABLE |
| 506 | endif | 512 | endif |
| 507 | 513 | ||
| 514 | GRAVE_ESC_ENABLE ?= yes | ||
| 515 | ifeq ($(strip $(GRAVE_ESC_ENABLE)), yes) | ||
| 516 | SRC += $(QUANTUM_DIR)/process_keycode/process_grave_esc.c | ||
| 517 | OPT_DEFS += -DGRAVE_ESC_ENABLE | ||
| 518 | endif | ||
| 519 | |||
| 508 | ifeq ($(strip $(DYNAMIC_MACRO_ENABLE)), yes) | 520 | ifeq ($(strip $(DYNAMIC_MACRO_ENABLE)), yes) |
| 509 | SRC += $(QUANTUM_DIR)/process_keycode/process_dynamic_macro.c | 521 | SRC += $(QUANTUM_DIR)/process_keycode/process_dynamic_macro.c |
| 510 | OPT_DEFS += -DDYNAMIC_MACRO_ENABLE | 522 | OPT_DEFS += -DDYNAMIC_MACRO_ENABLE |
| 511 | endif | 523 | endif |
| 512 | |||
| 513 | ifeq ($(strip $(DIP_SWITCH_ENABLE)), yes) | ||
| 514 | SRC += $(QUANTUM_DIR)/dip_switch.c | ||
| 515 | OPT_DEFS += -DDIP_SWITCH_ENABLE | ||
| 516 | endif | ||
