summaryrefslogtreecommitdiffstats
path: root/common_features.mk
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-09-16 04:12:25 +0200
committerJack Humbert <jack.humb@gmail.com>2017-09-16 04:12:25 +0200
commit024f0455deefaa9d47cae255a9ba098650c3841f (patch)
treef28833537e751e980574ddf29c6a60274a4de0f1 /common_features.mk
parent6198fed5664a05115fe2e02281de4cbd8052253c (diff)
downloadqmk_firmware-024f0455deefaa9d47cae255a9ba098650c3841f.tar.gz
qmk_firmware-024f0455deefaa9d47cae255a9ba098650c3841f.tar.xz
[core] fix rgb source include
Diffstat (limited to 'common_features.mk')
-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
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
OPT_DEFS += -DRGBLIGHT_ENABLE
+ SRC += $(QUANTUM_DIR)/rgblight.c
CIE1931_CURVE = yes
LED_BREATHING_TABLE = yes
ifeq ($(strip $(RGBLIGHT_CUSTOM_DRIVER)), yes)
OPT_DEFS += -DRGBLIGHT_CUSTOM_DRIVER
else
- SRC += ws2812.c
+ SRC += ws2812.c
endif
endif