mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
585757d6e6
The compositor acts as a relay between applications using the text-input protocol and input methods using the input-method protocol. This change implements the basic but useful support for input-method, leaving out grabs as well as popups.
28 lines
437 B
Meson
28 lines
437 B
Meson
sources = [
|
|
'config.c',
|
|
'cursor.c',
|
|
'desktop.c',
|
|
'ini.c',
|
|
'input.c',
|
|
'keyboard.c',
|
|
'layer_shell.c',
|
|
'main.c',
|
|
'output.c',
|
|
'seat.c',
|
|
'text_input.c',
|
|
'virtual_keyboard.c',
|
|
'wl_shell.c',
|
|
'xdg_shell.c',
|
|
'xdg_shell_v6.c',
|
|
]
|
|
|
|
if conf_data.get('WLR_HAS_XWAYLAND', false)
|
|
sources += 'xwayland.c'
|
|
endif
|
|
|
|
executable(
|
|
'rootston',
|
|
sources,
|
|
dependencies: [wlroots, wlr_protos, pixman],
|
|
build_by_default: get_option('rootston'),
|
|
)
|