mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-11 12:25:59 +01:00
c86ab4694c
src/meson.build:1:0: ERROR: Command "/usr/bin/find -name *.cpp" failed with status 1.
25 lines
626 B
Meson
25 lines
626 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('pango'),
|
|
dependency('pangocairo'),
|
|
dependency('libdrm'),
|
|
dependency('egl'),
|
|
dependency('xkbcommon'),
|
|
dependency('libinput'),
|
|
xcb_dep,
|
|
|
|
dependency('pixman-1'),
|
|
dependency('gl', 'opengl'),
|
|
dependency('threads')
|
|
],
|
|
install : true
|
|
)
|