mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-29 23:25:58 +01:00
0d14fd9136
* add systemd support motivation for this is is proper ordering of related/bound/required services to Hyprland (e.g. swaybg) that would need to have a compositor ready. this could possibly be a build-time option of course. see also: example/ files for example of services Signed-off-by: Paymon MARANDI <darwinskernel@gmail.com> * nix: add withSystemd flag Signed-off-by: Paymon MARANDI <darwinskernel@gmail.com> Co-authored-by: Mihai Fufezan <fufexan@protonmail.com> Co-authored-by: Vaxerski <vaxry@vaxry.net>
24 lines
588 B
Meson
24 lines
588 B
Meson
globber = run_command('find', '.', '-name', '*.cpp', check: true)
|
|
src = globber.stdout().strip().split('\n')
|
|
|
|
executable('Hyprland', src,
|
|
cpp_args: ['-DWLR_USE_UNSTABLE'],
|
|
dependencies: [
|
|
server_protos,
|
|
dependency('wayland-server'),
|
|
dependency('wayland-client'),
|
|
wlroots.get_variable('wlroots'),
|
|
dependency('cairo'),
|
|
dependency('libdrm'),
|
|
dependency('egl'),
|
|
dependency('xkbcommon'),
|
|
dependency('libinput'),
|
|
xcb_dep,
|
|
systemd_dep,
|
|
|
|
dependency('pixman-1'),
|
|
dependency('gl', 'opengl'),
|
|
dependency('threads')
|
|
],
|
|
install : true
|
|
)
|