summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2020-05-22 01:38:21 +0200
committerDaniel Schürmann <daschuer@mixxx.org>2020-05-22 01:38:21 +0200
commit3b0d42d439abca8cbec548d6b87e01c060c6107a (patch)
tree1e69422fc1adb0c0173e653b935c054d954351c9 /build
parent126fb18926e142a9224822f14f214bd2aafb5093 (diff)
Fix building without HID enabled
Diffstat (limited to 'build')
-rw-r--r--build/features.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/features.py b/build/features.py
index 60f75dbb2d..88e3738d61 100644
--- a/build/features.py
+++ b/build/features.py
@@ -157,7 +157,8 @@ class Bulk(Feature):
'src/controllers/bulk/bulkenumerator.cpp']
if not int(build.flags['hid']):
sources.append(
- 'src/controllers/hid/hidcontrollerpresetfilehandler.cpp')
+ ['src/controllers/hid/hidcontrollerpresetfilehandler.cpp',
+ 'src/controllers/hid/hidcontrollerpreset.cpp'])
return sources