diff options
author | Mihai Fufezan <[email protected]> | 2024-04-23 07:01:20 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2024-04-23 07:01:20 +0300 |
commit | 5fdd0bceac9b8b60e68635226de57c3d18d0a034 (patch) | |
tree | 4566e2b7fd70927cd369dbea0bfd9dd84074a04c /src/meson.build | |
parent | 5262292abc564cffc2ebead5aab6ba028bf9b597 (diff) | |
download | Hyprland-5fdd0bceac9b8b60e68635226de57c3d18d0a034.tar.gz Hyprland-5fdd0bceac9b8b60e68635226de57c3d18d0a034.zip |
Meson & Nix: add libuuid dep
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 3 |
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 ) |