2017-10-06 23:50:25 +02:00
|
|
|
sources = [
|
|
|
|
'config.c',
|
2017-11-09 02:25:02 +01:00
|
|
|
'cursor.c',
|
2017-10-06 23:50:25 +02:00
|
|
|
'desktop.c',
|
|
|
|
'ini.c',
|
|
|
|
'input.c',
|
|
|
|
'keyboard.c',
|
|
|
|
'main.c',
|
|
|
|
'output.c',
|
2017-11-03 14:01:34 +01:00
|
|
|
'seat.c',
|
2017-10-06 23:50:25 +02:00
|
|
|
'wl_shell.c',
|
2018-02-12 21:29:23 +01:00
|
|
|
'xdg_shell_v6.c',
|
2018-02-14 12:40:13 +01:00
|
|
|
'xdg_shell.c',
|
2017-10-06 23:50:25 +02:00
|
|
|
]
|
|
|
|
if get_option('enable_xwayland')
|
|
|
|
sources += ['xwayland.c']
|
|
|
|
endif
|
2017-09-23 02:24:32 +02:00
|
|
|
executable(
|
2018-01-18 03:31:46 +01:00
|
|
|
'rootston', sources, dependencies: [wlroots, wlr_protos, pixman]
|
2017-09-23 02:24:32 +02:00
|
|
|
)
|