diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2017-12-19 08:06:23 +0100 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2017-12-19 08:43:37 +0100 |
commit | f9413adde7ada3b5132435604a7db37971d4cf45 (patch) | |
tree | 748f477ad514da1879d73b1f7b8e9e900dfcef2c /common/meson.build | |
parent | eb4f66f7857d3e7cd8ac14a7fb43502fbc70de98 (diff) |
build: add wlroots dependency to common
It is required for include path if wlroots is not built in standard path,
but found through pkg-config
Diffstat (limited to 'common/meson.build')
-rw-r--r-- | common/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/meson.build b/common/meson.build index 3a4282ad..abe0cdcf 100644 --- a/common/meson.build +++ b/common/meson.build @@ -7,5 +7,6 @@ lib_sway_common = static_library('sway-common', 'readline.c', 'ipc-client.c' ), + dependencies: [ wlroots ], include_directories: sway_inc ) |