From bbf2a2d3069ec119ef53abe60d38fa69c4f9a214 Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Sat, 18 Jul 2020 11:34:55 +0100 Subject: [PATCH] tests/meson.build: fix build (issue #1) --- tests/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 685361f9..756fe3ae 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -2,15 +2,17 @@ lib_xml2 = library('libxml-2.0') lib_wayland_server = library('wayland-server') lib_xkbcommon = library('xkbcommon') lib_glib = library('glib-2.0') +lib_wlroots = library('wlroots') rcxml_lib = static_library( 'rcxml', sources: files( '../src/config/rcxml.c', '../src/config/keybind.c', + '../src/config/config-dir.c', '../src/common/buf.c' ), - dependencies: [xml2, wayland_server, xkbcommon, glib], + dependencies: [xml2, wayland_server, xkbcommon, glib, wlroots], include_directories: [labwc_inc], link_with: [lib_xml2, lib_wayland_server, lib_xkbcommon, lib_glib], )