Meson & Nix: add libuuid dep

This commit is contained in:
Mihai Fufezan 2024-04-23 07:01:20 +03:00
parent 5262292abc
commit 5fdd0bceac
No known key found for this signature in database
2 changed files with 4 additions and 1 deletions

View File

@ -18,6 +18,7 @@
libdrm,
libexecinfo,
libinput,
libuuid,
libxcb,
libxkbcommon,
mesa,
@ -113,6 +114,7 @@ in
libdrm
libGL
libinput
libuuid
libxkbcommon
mesa
pango

View File

@ -26,7 +26,8 @@ executable('Hyprland', src,
dependency('gl', 'opengl'),
dependency('threads'),
dependency('pango'),
dependency('pangocairo')
dependency('pangocairo'),
dependency('uuid'),
],
install : true
)