diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-08-23 00:29:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-23 00:29:46 -0400 |
commit | fb4452c2f5a80720fd56306ea4fa7c61a5e8040d (patch) | |
tree | 1568da3302d7afea44b21a59b4e75ad17702751b /tmk_core/common.mk | |
parent | 57125ce790843799a420a13a9f08b8b072b546e5 (diff) | |
parent | c20bf83afd698a4535fa1b8df901f6ab1e3cb532 (diff) |
Merge pull request #671 from Talljoe/one-hand
Add native one-handed support
Diffstat (limited to 'tmk_core/common.mk')
-rw-r--r-- | tmk_core/common.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tmk_core/common.mk b/tmk_core/common.mk index aa05b9491d..429c571435 100644 --- a/tmk_core/common.mk +++ b/tmk_core/common.mk @@ -85,6 +85,10 @@ ifeq ($(strip $(BLUETOOTH_ENABLE)), yes) OPT_DEFS += -DBLUETOOTH_ENABLE endif +ifeq ($(strip $(ONEHAND_ENABLE)), yes) + OPT_DEFS += -DONEHAND_ENABLE +endif + ifeq ($(strip $(KEYMAP_SECTION_ENABLE)), yes) OPT_DEFS += -DKEYMAP_SECTION_ENABLE |