mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-25 05:50:05 +01:00
xinput or an equivalent isn't available under wayland, but the majority of use-cases of "why doesn't my device work" or "why does feature X not work" should be covered by simply listing the local devices and their config options. Example output: Device: SynPS/2 Synaptics TouchPad Kernel: /dev/input/event4 Group: 9 Seat: seat0, default Size: 97.33x62.40mm Capabilities: pointer Tap-to-click: disabled Left-handed: disabled Nat.scrolling: disabled Calibration: n/a Scroll methods: *two-finger Click methods: *button-areas clickfinger Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
noinst_PROGRAMS = event-debug ptraccel-debug
|
|
bin_PROGRAMS = libinput-list-devices
|
|
noinst_LTLIBRARIES = libshared.la
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src
|
|
|
|
|
|
libshared_la_SOURCES = \
|
|
shared.c \
|
|
shared.h
|
|
|
|
event_debug_SOURCES = event-debug.c
|
|
event_debug_LDADD = ../src/libinput.la libshared.la $(LIBUDEV_LIBS)
|
|
event_debug_LDFLAGS = -no-install
|
|
event_debug_CFLAGS = $(LIBUDEV_CFLAGS)
|
|
|
|
ptraccel_debug_SOURCES = ptraccel-debug.c
|
|
ptraccel_debug_LDADD = ../src/libfilter.la
|
|
ptraccel_debug_LDFLAGS = -no-install
|
|
|
|
libinput_list_devices_SOURCES = libinput-list-devices.c
|
|
libinput_list_devices_LDADD = ../src/libinput.la libshared.la $(LIBUDEV_LIBS)
|
|
libinput_list_devices_CFLAGS = $(LIBUDEV_CFLAGS)
|
|
man1_MANS = libinput-list-devices.man
|
|
|
|
if BUILD_EVENTGUI
|
|
noinst_PROGRAMS += event-gui
|
|
|
|
event_gui_SOURCES = event-gui.c
|
|
event_gui_LDADD = ../src/libinput.la libshared.la $(CAIRO_LIBS) $(GTK_LIBS) $(LIBUDEV_LIBS)
|
|
event_gui_CFLAGS = $(CAIRO_CFLAGS) $(GTK_CFLAGS) $(LIBUDEV_CFLAGS)
|
|
event_gui_LDFLAGS = -no-install
|
|
endif
|