diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2017-09-15 22:12:25 -0400 |
|---|---|---|
| committer | Jack Humbert <jack.humb@gmail.com> | 2017-09-15 22:12:25 -0400 |
| commit | 024f0455deefaa9d47cae255a9ba098650c3841f (patch) | |
| tree | f28833537e751e980574ddf29c6a60274a4de0f1 | |
| parent | 6198fed5664a05115fe2e02281de4cbd8052253c (diff) | |
| download | qmk_firmware-024f0455deefaa9d47cae255a9ba098650c3841f.tar.gz qmk_firmware-024f0455deefaa9d47cae255a9ba098650c3841f.zip | |
[core] fix rgb source include
| -rw-r--r-- | common_features.mk | 3 |
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 | ||
| 94 | ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) | 94 | ifeq ($(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 |
| 103 | endif | 104 | endif |
| 104 | 105 | ||
