aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/LInputDevice.pri
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-11-17 10:38:53 -0500
committerKen Moore <ken@ixsystems.com>2016-11-17 10:38:53 -0500
commitc8478cd010f7c6056a48e0cca9d4c0359329297a (patch)
tree8d65e16936375f8594112e8ea0719bd783a15861 /src-qt5/core/libLumina/LInputDevice.pri
parentBump the copyright year on the LuminaX11 files. (diff)
downloadlumina-c8478cd010f7c6056a48e0cca9d4c0359329297a.tar.gz
lumina-c8478cd010f7c6056a48e0cca9d4c0359329297a.tar.bz2
lumina-c8478cd010f7c6056a48e0cca9d4c0359329297a.zip
Add in the beginnings of a new backend class for managing input devices (LInputDevice):
This uses the xcb-xinput library for interacting with devices on X (could be moved to wayland in the future).
Diffstat (limited to 'src-qt5/core/libLumina/LInputDevice.pri')
-rw-r--r--src-qt5/core/libLumina/LInputDevice.pri13
1 files changed, 13 insertions, 0 deletions
diff --git a/src-qt5/core/libLumina/LInputDevice.pri b/src-qt5/core/libLumina/LInputDevice.pri
new file mode 100644
index 00000000..e90728ce
--- /dev/null
+++ b/src-qt5/core/libLumina/LInputDevice.pri
@@ -0,0 +1,13 @@
+
+QT *= x11extras
+
+LIBS *= -lc -lxcb -lxcb-xinput
+
+#LUtils Files
+SOURCES *= $${PWD}/LInputDevice.cpp
+HEADERS *= $${PWD}/LInputDevice.h
+
+INCLUDEPATH *= ${PWD}
+
+#include LUtils and LuminaOS
+#include(LUtils.pri)
bgstack15