diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-08-29 20:15:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-29 20:15:46 -0400 |
commit | 3301e2219fe771fdad3b8f851d4b4f7f2a49afc8 (patch) | |
tree | 581d31243705ddea424f376057283dfa4eae681f | |
parent | 6d1e916851daa7bcbd8ef31b6fbc73cb369ef1f0 (diff) | |
parent | 2f0395ce725581b93b68a88899c207014ee68901 (diff) |
Merge pull request #700 from algernon/h/ucis/enable-fix
build_keyboard.mk: Restore UCIS_ENABLE support
-rw-r--r-- | build_keyboard.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build_keyboard.mk b/build_keyboard.mk index 04632c1c94..03a69b1464 100644 --- a/build_keyboard.mk +++ b/build_keyboard.mk @@ -148,6 +148,11 @@ ifeq ($(strip $(AUDIO_ENABLE)), yes) SRC += $(QUANTUM_DIR)/audio/luts.c endif +ifeq ($(strip $(UCIS_ENABLE)), yes) + OPT_DEFS += -DUCIS_ENABLE + UNICODE_ENABLE = yes +endif + ifeq ($(strip $(UNICODE_ENABLE)), yes) OPT_DEFS += -DUNICODE_ENABLE SRC += $(QUANTUM_DIR)/process_keycode/process_unicode.c |