aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/meson.build
diff options
context:
space:
mode:
authorMihai Fufezan <[email protected]>2024-04-23 07:01:20 +0300
committerMihai Fufezan <[email protected]>2024-04-23 07:01:20 +0300
commit5fdd0bceac9b8b60e68635226de57c3d18d0a034 (patch)
tree4566e2b7fd70927cd369dbea0bfd9dd84074a04c /src/meson.build
parent5262292abc564cffc2ebead5aab6ba028bf9b597 (diff)
downloadHyprland-5fdd0bceac9b8b60e68635226de57c3d18d0a034.tar.gz
Hyprland-5fdd0bceac9b8b60e68635226de57c3d18d0a034.zip
Meson & Nix: add libuuid dep
Diffstat (limited to 'src/meson.build')
-rw-r--r--src/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build
index 15c69552..7a00a5ff 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -26,7 +26,8 @@ executable('Hyprland', src,
dependency('gl', 'opengl'),
dependency('threads'),
dependency('pango'),
- dependency('pangocairo')
+ dependency('pangocairo'),
+ dependency('uuid'),
],
install : true
)