mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-22 22:29:50 +01:00
nix/meson: add re2 dependency (#8738)
* nix/default: add re2 dependency * meson: add re2
This commit is contained in:
parent
c2d14a2013
commit
e340e9f431
4 changed files with 6 additions and 0 deletions
|
@ -3,6 +3,7 @@ executable(
|
|||
'main.cpp',
|
||||
dependencies: [
|
||||
dependency('hyprutils', version: '>= 0.1.1'),
|
||||
dependency('re2', required: true)
|
||||
],
|
||||
install: true,
|
||||
)
|
||||
|
|
|
@ -59,6 +59,8 @@ endif
|
|||
backtrace_dep = cpp_compiler.find_library('execinfo', required: false)
|
||||
epoll_dep = dependency('epoll-shim', required: false) # timerfd on BSDs
|
||||
|
||||
re2 = dependency('re2', required: true)
|
||||
|
||||
# Handle options
|
||||
systemd_option = get_option('systemd')
|
||||
systemd = dependency('systemd', required: systemd_option)
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
mesa,
|
||||
pango,
|
||||
pciutils,
|
||||
re2,
|
||||
systemd,
|
||||
tomlplusplus,
|
||||
udis86-hyprland,
|
||||
|
@ -128,6 +129,7 @@ in
|
|||
mesa
|
||||
pango
|
||||
pciutils
|
||||
re2
|
||||
tomlplusplus
|
||||
udis86-hyprland
|
||||
wayland
|
||||
|
|
|
@ -22,6 +22,7 @@ executable(
|
|||
dependency('egl'),
|
||||
dependency('xkbcommon'),
|
||||
dependency('libinput'),
|
||||
dependency('re2'),
|
||||
xcb_dep,
|
||||
xcb_composite_dep,
|
||||
xcb_errors_dep,
|
||||
|
|
Loading…
Reference in a new issue