diff options
author | Mihai Fufezan <[email protected]> | 2024-06-11 14:18:37 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2024-06-11 16:49:43 +0300 |
commit | 90d5a141f14a6cceeb624c50751614348627cc67 (patch) | |
tree | 65526a0be4997f9eb598838d74ad552cc737df45 | |
parent | 075e71b462c642e3edb90067f2f7b64b6f349695 (diff) | |
download | Hyprland-90d5a141f14a6cceeb624c50751614348627cc67.tar.gz Hyprland-90d5a141f14a6cceeb624c50751614348627cc67.zip |
Meson: add hyprutils dep
-rw-r--r-- | hyprctl/meson.build | 3 | ||||
-rw-r--r-- | hyprpm/src/meson.build | 1 | ||||
-rw-r--r-- | src/meson.build | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/hyprctl/meson.build b/hyprctl/meson.build index 94e98b4b..5488845f 100644 --- a/hyprctl/meson.build +++ b/hyprctl/meson.build @@ -1,4 +1,7 @@ executable('hyprctl', 'main.cpp', + dependencies: [ + dependency('hyprutils', version: '>= 0.1.1'), + ], install: true ) diff --git a/hyprpm/src/meson.build b/hyprpm/src/meson.build index a8644169..e2c512a5 100644 --- a/hyprpm/src/meson.build +++ b/hyprpm/src/meson.build @@ -3,6 +3,7 @@ src = globber.stdout().strip().split('\n') executable('hyprpm', src, dependencies: [ + dependency('hyprutils', version: '>= 0.1.1'), dependency('threads'), dependency('tomlplusplus') ], diff --git a/src/meson.build b/src/meson.build index ef00d4e0..ccb1922a 100644 --- a/src/meson.build +++ b/src/meson.build @@ -13,6 +13,7 @@ executable('Hyprland', src, dependency('cairo'), dependency('hyprcursor'), dependency('hyprlang', version: '>= 0.3.2'), + dependency('hyprutils', version: '>= 0.1.1'), dependency('libdrm'), dependency('egl'), dependency('xkbcommon'), |