mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-29 15:41:59 +00:00
825d8b7a49
Input Mapping Tables are still at the core as they are a good concept, however they include both axis and button mappings, and the size is not hard-coded, but dependent on the known devices. Not much actually works yet (nq segfaults when a key is pressed).
31 lines
879 B
Text
31 lines
879 B
Text
lib_LTLIBRARIES += libs/input/libQFinput.la
|
|
noinst_LTLIBRARIES += @input_libs@
|
|
|
|
input_deps = @input_libs@
|
|
|
|
in_evdev_src= \
|
|
libs/input/evdev/hotplug.c \
|
|
libs/input/evdev/inputlib.c \
|
|
libs/input/in_evdev.c
|
|
|
|
libs_input_libinput_evdev_la_LDFLAGS= $(lib_ldflags)
|
|
libs_input_libinput_evdev_la_LIBADD=
|
|
libs_input_libinput_evdev_la_DEPENDENCIES=
|
|
libs_input_libinput_evdev_la_CFLAGS=
|
|
libs_input_libinput_evdev_la_SOURCES= $(in_evdev_src)
|
|
|
|
libs_input_libQFinput_la_LDFLAGS= $(lib_ldflags)
|
|
libs_input_libQFinput_la_LIBADD= $(input_deps)
|
|
libs_input_libQFinput_la_DEPENDENCIES= $(input_deps)
|
|
libs_input_libQFinput_la_SOURCES= \
|
|
libs/input/keys.c \
|
|
libs/input/old_keys.c \
|
|
libs/input/in_axis.c \
|
|
libs/input/in_binding.c \
|
|
libs/input/in_button.c \
|
|
libs/input/in_common.c \
|
|
libs/input/in_event.c \
|
|
libs/input/in_imt.c
|
|
|
|
EXTRA_LTLIBRARIES += \
|
|
libs/input/libinput_evdev.la
|