aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common_features.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk
index 6f29c97c9..117f84260 100644
--- a/common_features.mk
+++ b/common_features.mk
@@ -93,12 +93,13 @@ endif
93 93
94ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) 94ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
95 OPT_DEFS += -DRGBLIGHT_ENABLE 95 OPT_DEFS += -DRGBLIGHT_ENABLE
96 SRC += $(QUANTUM_DIR)/rgblight.c
96 CIE1931_CURVE = yes 97 CIE1931_CURVE = yes
97 LED_BREATHING_TABLE = yes 98 LED_BREATHING_TABLE = yes
98 ifeq ($(strip $(RGBLIGHT_CUSTOM_DRIVER)), yes) 99 ifeq ($(strip $(RGBLIGHT_CUSTOM_DRIVER)), yes)
99 OPT_DEFS += -DRGBLIGHT_CUSTOM_DRIVER 100 OPT_DEFS += -DRGBLIGHT_CUSTOM_DRIVER
100 else 101 else
101 SRC += ws2812.c 102 SRC += ws2812.c
102 endif 103 endif
103endif 104endif
104 105