From 727ce5171f1efea9797043992e76c90aa5b8d10d Mon Sep 17 00:00:00 2001 From: Tau Date: Sun, 3 Mar 2019 20:02:35 -0500 Subject: [PATCH] Add XInput dependency --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index 7569161..de254f6 100644 --- a/meson.build +++ b/meson.build @@ -24,6 +24,9 @@ if meson.get_compiler('c').get_id() != 'msvc' ) endif +cc = meson.get_compiler('c') +xinput_lib = cc.find_library('xinput') + inc = include_directories('.') capnhook = subproject('capnhook')