mirror of
https://github.com/labwc/labwc.git
synced 2025-10-31 22:25:34 -04:00
tests/meson.build: fix build (issue #1)
This commit is contained in:
parent
ccc818fda5
commit
bbf2a2d306
1 changed files with 3 additions and 1 deletions
|
|
@ -2,15 +2,17 @@ lib_xml2 = library('libxml-2.0')
|
||||||
lib_wayland_server = library('wayland-server')
|
lib_wayland_server = library('wayland-server')
|
||||||
lib_xkbcommon = library('xkbcommon')
|
lib_xkbcommon = library('xkbcommon')
|
||||||
lib_glib = library('glib-2.0')
|
lib_glib = library('glib-2.0')
|
||||||
|
lib_wlroots = library('wlroots')
|
||||||
|
|
||||||
rcxml_lib = static_library(
|
rcxml_lib = static_library(
|
||||||
'rcxml',
|
'rcxml',
|
||||||
sources: files(
|
sources: files(
|
||||||
'../src/config/rcxml.c',
|
'../src/config/rcxml.c',
|
||||||
'../src/config/keybind.c',
|
'../src/config/keybind.c',
|
||||||
|
'../src/config/config-dir.c',
|
||||||
'../src/common/buf.c'
|
'../src/common/buf.c'
|
||||||
),
|
),
|
||||||
dependencies: [xml2, wayland_server, xkbcommon, glib],
|
dependencies: [xml2, wayland_server, xkbcommon, glib, wlroots],
|
||||||
include_directories: [labwc_inc],
|
include_directories: [labwc_inc],
|
||||||
link_with: [lib_xml2, lib_wayland_server, lib_xkbcommon, lib_glib],
|
link_with: [lib_xml2, lib_wayland_server, lib_xkbcommon, lib_glib],
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue