mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-08 00:32:11 +00:00
This refactors (as such) keys.c so that it no longer depends on console or gib, and pulls keys out of video targets. The eventual plan is to move all high-level general input handling into libQFinput, and probably low-level (eg, /dev/input handling for joysticks etc on Linux). Fixes #8
8 lines
276 B
Text
8 lines
276 B
Text
lib_LTLIBRARIES += libs/input/libQFinput.la
|
|
|
|
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
|