1
0
Fork 0
mirror of https://github.com/hyprwm/wlroots-hyprland.git synced 2025-02-17 18:42:08 +01:00
wlroots-hyprland/rootston/meson.build

23 lines
363 B
Meson
Raw Normal View History

2017-10-06 21:50:25 +00:00
sources = [
'config.c',
'cursor.c',
2017-10-06 21:50:25 +00:00
'desktop.c',
'ini.c',
'input.c',
'keyboard.c',
'layer_shell.c',
2017-10-06 21:50:25 +00:00
'main.c',
'output.c',
2017-11-03 09:01:34 -04:00
'seat.c',
'virtual_keyboard.c',
2017-10-06 21:50:25 +00:00
'wl_shell.c',
2018-02-12 21:29:23 +01:00
'xdg_shell_v6.c',
'xdg_shell.c',
2017-10-06 21:50:25 +00:00
]
if get_option('enable-xwayland')
2017-10-06 21:50:25 +00:00
sources += ['xwayland.c']
endif
2017-09-22 20:24:32 -04:00
executable(
'rootston', sources, dependencies: [wlroots, wlr_protos, pixman]
2017-09-22 20:24:32 -04:00
)