mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
19 lines
306 B
Meson
19 lines
306 B
Meson
sources = [
|
|
'config.c',
|
|
'cursor.c',
|
|
'desktop.c',
|
|
'ini.c',
|
|
'input.c',
|
|
'keyboard.c',
|
|
'main.c',
|
|
'output.c',
|
|
'seat.c',
|
|
'xdg_shell_v6.c',
|
|
'wl_shell.c',
|
|
]
|
|
if get_option('enable_xwayland')
|
|
sources += ['xwayland.c']
|
|
endif
|
|
executable(
|
|
'rootston', sources, dependencies: [wlroots, wlr_protos, pixman]
|
|
)
|