summaryrefslogtreecommitdiffstats
path: root/src/plugins/generic
diff options
context:
space:
mode:
authorAlbert Astals Cid <albert.astals.cid@kdab.com>2019-02-11 15:13:17 +0100
committerAlbert Astals Cid <albert.astals.cid@kdab.com>2019-02-11 16:36:57 +0000
commit9dbcbeb1de09ed6495ca393b6db27aead61a5ff5 (patch)
tree7ff4bbd3a230e354f699e4fe8cb4a96c8c3d6092 /src/plugins/generic
parentdb8e4077d177a0402a921bf3e2259b154423fbc6 (diff)
cmake: enable evdevtablet plugin
Change-Id: Ia2d8c88b4c36c7c6e71a49f42398ebd0378239c1 Reviewed-by: Liang Qi <liang.qi@qt.io>
Diffstat (limited to 'src/plugins/generic')
-rw-r--r--src/plugins/generic/CMakeLists.txt2
-rw-r--r--src/plugins/generic/evdevtablet/CMakeLists.txt19
2 files changed, 20 insertions, 1 deletions
diff --git a/src/plugins/generic/CMakeLists.txt b/src/plugins/generic/CMakeLists.txt
index 39af90fb9a..a7fbd1381c 100644
--- a/src/plugins/generic/CMakeLists.txt
+++ b/src/plugins/generic/CMakeLists.txt
@@ -5,7 +5,7 @@ if(QT_FEATURE_evdev)
add_subdirectory(evdevkeyboard)
if(QT_FEATURE_tabletevent)
-# TODO add_subdirectory(evdevtablet)
+ add_subdirectory(evdevtablet)
endif()
endif()
diff --git a/src/plugins/generic/evdevtablet/CMakeLists.txt b/src/plugins/generic/evdevtablet/CMakeLists.txt
new file mode 100644
index 0000000000..a402023e47
--- /dev/null
+++ b/src/plugins/generic/evdevtablet/CMakeLists.txt
@@ -0,0 +1,19 @@
+# Generated from evdevtablet.pro.
+
+#####################################################################
+## qevdevtabletplugin Plugin:
+#####################################################################
+
+add_qt_plugin(qevdevtabletplugin
+ TYPE generic
+ SOURCES
+ main.cpp
+ LIBRARIES
+ Qt::CorePrivate
+ Qt::GuiPrivate
+ Qt::InputSupportPrivate
+ # OTHER_FILES = "evdevtablet.json"
+ # PLUGIN_CLASS_NAME = "QEvdevTabletPlugin"
+ # PLUGIN_EXTENDS = "-"
+ # _LOADED = "qt_plugin"
+)