wlroots-hyprland/rootston/meson.build

29 lines
438 B
Meson
Raw Normal View History

2017-10-06 23:50:25 +02:00
sources = [
'config.c',
'cursor.c',
2017-10-06 23:50:25 +02:00
'desktop.c',
'ini.c',
'input.c',
'keyboard.c',
'layer_shell.c',
2017-10-06 23:50:25 +02:00
'main.c',
'output.c',
2017-11-03 14:01:34 +01:00
'seat.c',
'text_input.c',
'virtual_keyboard.c',
2017-10-06 23:50:25 +02:00
'wl_shell.c',
'xdg_shell.c',
'xdg_shell_v6.c',
2017-10-06 23:50:25 +02:00
]
if conf_data.get('WLR_HAS_XWAYLAND', 0) == 1
sources += 'xwayland.c'
2017-10-06 23:50:25 +02:00
endif
2017-09-23 02:24:32 +02:00
executable(
'rootston',
sources,
dependencies: [wlroots, wlr_protos, pixman],
build_by_default: get_option('rootston'),
2017-09-23 02:24:32 +02:00
)