summaryrefslogtreecommitdiff
path: root/Tests/FindLibinput/Test
diff options
context:
space:
mode:
authorFrederik Gladhorn <gladhorn@kde.org>2018-09-27 09:41:02 +0200
committerBrad King <brad.king@kitware.com>2018-10-11 10:43:45 -0400
commitf76047f34a960272ca29518551fb23504c61ee7e (patch)
tree15df7d2424387bad3ee97e8f2af481e6a1dc54b3 /Tests/FindLibinput/Test
parente2dd6ac9776e4f5a1995dfc606480b627fdbce72 (diff)
downloadcmake-f76047f34a960272ca29518551fb23504c61ee7e.tar.gz
FindLibinput: Add module to find libinput
This module is inspired by one from KDE's KWin.
Diffstat (limited to 'Tests/FindLibinput/Test')
-rw-r--r--Tests/FindLibinput/Test/CMakeLists.txt14
-rw-r--r--Tests/FindLibinput/Test/main.c13
2 files changed, 27 insertions, 0 deletions
diff --git a/Tests/FindLibinput/Test/CMakeLists.txt b/Tests/FindLibinput/Test/CMakeLists.txt
new file mode 100644
index 0000000000..1cc68d48e9
--- /dev/null
+++ b/Tests/FindLibinput/Test/CMakeLists.txt
@@ -0,0 +1,14 @@
+cmake_minimum_required(VERSION 3.10)
+project(TestFindLibinput C)
+include(CTest)
+
+find_package(Libinput REQUIRED)
+
+add_executable(test_tgt main.c)
+target_link_libraries(test_tgt Libinput::Libinput)
+add_test(NAME test_tgt COMMAND test_tgt)
+
+add_executable(test_var main.c)
+target_include_directories(test_var PRIVATE ${Libinput_INCLUDE_DIRS})
+target_link_libraries(test_var PRIVATE ${Libinput_LIBRARIES})
+add_test(NAME test_var COMMAND test_var)
diff --git a/Tests/FindLibinput/Test/main.c b/Tests/FindLibinput/Test/main.c
new file mode 100644
index 0000000000..3919962808
--- /dev/null
+++ b/Tests/FindLibinput/Test/main.c
@@ -0,0 +1,13 @@
+#include <libinput.h>
+#include <stdio.h>
+
+int main()
+{
+ struct libinput_interface interface;
+ interface.open_restricted = 0;
+ interface.close_restricted = 0;
+ struct libinput* li;
+ li = libinput_udev_create_context(&interface, NULL, NULL);
+ printf("Found Libinput.\n");
+ return 0;
+}