diff options
| author | Joel Challis | 2025-05-12 00:38:48 +0200 |
|---|---|---|
| committer | GitHub | 2025-05-12 00:38:48 +0200 |
| commit | 88c094908bb94324e28876f2beb8028a9fad086d (patch) | |
| tree | 4e47c513470873b59ac20735bdec99afb903fd5a /builddefs/common_features.mk | |
| parent | c045c3e00c41597fbc82239376611d3ac8a7a52e (diff) | |
Add raw_hid support to host driver (#25255)
Diffstat (limited to 'builddefs/common_features.mk')
| -rw-r--r-- | builddefs/common_features.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/builddefs/common_features.mk b/builddefs/common_features.mk index f62b925817..3d01be8205 100644 --- a/builddefs/common_features.mk +++ b/builddefs/common_features.mk @@ -643,6 +643,11 @@ ifeq ($(strip $(VIA_ENABLE)), yes) TRI_LAYER_ENABLE := yes endif +ifeq ($(strip $(RAW_ENABLE)), yes) + OPT_DEFS += -DRAW_ENABLE + SRC += raw_hid.c +endif + ifeq ($(strip $(DYNAMIC_KEYMAP_ENABLE)), yes) SEND_STRING_ENABLE := yes endif |