diff options
author | nerdopolis <bluescreen_avenger@verizon.net> | 2022-11-27 18:30:15 -0500 |
---|---|---|
committer | mstoeckl <github@mstoeckl.com> | 2022-11-27 19:15:15 -0500 |
commit | dd072b828666a17cd33dec9da0febb533408ac66 (patch) | |
tree | 7499fce68a793a449dc9083c416cb45438f6ac63 /meson.build | |
parent | 848ff54d37359a636078d6b6c6c815bf49bdbce4 (diff) | |
download | swaybg-dd072b828666a17cd33dec9da0febb533408ac66.tar.gz swaybg-dd072b828666a17cd33dec9da0febb533408ac66.tar.bz2 |
Fix build on Debian Stable
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 41c8991..dd1d153 100644 --- a/meson.build +++ b/meson.build @@ -26,6 +26,10 @@ if is_freebsd add_project_arguments('-D_C11_SOURCE', language: 'c') endif + +cc = meson.get_compiler('c') +rt = cc.find_library('rt') + wayland_client = dependency('wayland-client') wayland_protos = dependency('wayland-protocols', version: '>=1.14') wayland_scanner = dependency('wayland-scanner', version: '>=1.14.91', native: true) @@ -94,6 +98,7 @@ client_protos = declare_dependency( dependencies = [ cairo, client_protos, + rt, gdk_pixbuf, wayland_client, ] |