summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2022-07-11 15:45:26 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2022-07-12 09:50:08 +0000
commitb6c9dfd9d7bc9d79c22e310293f6e0068e088b52 (patch)
treebae14546bb3c2e41900d6d5b03515f8e7007ab1d
parent0afed6479d8321b3991371786cc6f0ad37f79b66 (diff)
downloadlibevdev-b6c9dfd9d7bc9d79c22e310293f6e0068e088b52.tar.gz
meson: drop the uinput.h header listing
This is a noop, meson gets its compile dependencies from the compiler, listing it here makes no difference. Same is true for listing the other two linux/input/*.h headers as sources. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--meson.build4
1 files changed, 0 insertions, 4 deletions
diff --git a/meson.build b/meson.build
index d63a41e..7db32b3 100644
--- a/meson.build
+++ b/meson.build
@@ -41,7 +41,6 @@ dep_lm = cc.find_library('m')
dep_rt = cc.find_library('rt')
input_h = dir_root / 'include' / 'linux' / host_machine.system() / 'input.h'
-uinput_h = dir_root / 'include' / 'linux' / host_machine.system() / 'uinput.h'
input_event_codes_h = dir_root / 'include' / 'linux' / host_machine.system() / 'input-event-codes.h'
# event-names.h
@@ -68,9 +67,6 @@ src_libevdev = [
'libevdev/libevdev-names.c',
'include/linux/input.h',
'include/linux/uinput.h',
- input_event_codes_h,
- input_h,
- uinput_h
]
mapfile = dir_src / 'libevdev.sym'