qmk-keychron-q3-colemak-dh/keyboards/mechwild/murphpad/keymaps/vial/rules.mk
honorless 7b8545b635
fix: detect CONVERT_TO vs MCU in rules.mk
MCU no longer changes to match the converter, resulting in features
being disabled unnecessarily on ARM Micros.

Check for a non-blank CONVERT_TO instead.
2024-02-28 19:38:42 -05:00

16 lines
310 B
Makefile

VIA_ENABLE = yes
LTO_ENABLE = yes
VIAL_ENABLE = yes
ENCODER_MAP_ENABLE = yes
MOUSEKEY_ENABLE = yes
COMBOS_ENABLE = yes
ifeq ($(strip $(CONVERT_TO)),)
QMK_SETTINGS = no
TAP_DANCE_ENABLE = no
KEY_OVERRIDE_ENABLE = no
GRAVE_ESC_ENABLE = no
SPACE_CADET_ENABLE = no
MAGIC_ENABLE = no
endif