mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 13:26:00 +01:00
016da234d0
Moves Hyprland from wlroots to aquamarine for the backend. --------- Signed-off-by: Vaxry <vaxry@vaxry.net> Co-authored-by: Mihai Fufezan <mihai@fufexan.net> Co-authored-by: Jan Beich <jbeich@FreeBSD.org> Co-authored-by: vaxerski <vaxerski@users.noreply.github.com> Co-authored-by: UjinT34 <41110182+UjinT34@users.noreply.github.com> Co-authored-by: Tom Englund <tomenglund26@gmail.com> Co-authored-by: Ikalco <73481042+ikalco@users.noreply.github.com> Co-authored-by: diniamo <diniamo53@gmail.com>
41 lines
1 KiB
Meson
41 lines
1 KiB
Meson
globber = run_command('sh', '-c', 'find . -name "*.cpp" | sort', check: true)
|
|
src = globber.stdout().strip().split('\n')
|
|
|
|
executable('Hyprland', src,
|
|
link_args: '-rdynamic',
|
|
cpp_pch: 'pch/pch.hpp',
|
|
dependencies: [
|
|
server_protos,
|
|
dependency('aquamarine'),
|
|
dependency('gbm'),
|
|
dependency('xcursor'),
|
|
dependency('wayland-server'),
|
|
dependency('wayland-client'),
|
|
dependency('cairo'),
|
|
dependency('hyprcursor', version: '>=0.1.7'),
|
|
dependency('hyprlang', version: '>= 0.3.2'),
|
|
dependency('hyprutils', version: '>= 0.2.0'),
|
|
dependency('libdrm'),
|
|
dependency('egl'),
|
|
dependency('xkbcommon'),
|
|
dependency('libinput'),
|
|
xcb_dep,
|
|
xcb_composite_dep,
|
|
xcb_errors_dep,
|
|
xcb_icccm_dep,
|
|
xcb_render_dep,
|
|
xcb_res_dep,
|
|
xcb_xfixes_dep,
|
|
backtrace_dep,
|
|
epoll_dep,
|
|
udis86,
|
|
|
|
dependency('pixman-1'),
|
|
dependency('gl', 'opengl'),
|
|
dependency('threads'),
|
|
dependency('pango'),
|
|
dependency('pangocairo'),
|
|
dependency('uuid'),
|
|
],
|
|
install : true
|
|
)
|