commit
d0d6413772
@ -1,3 +1,4 @@
|
||||
option('enable_libcap', type: 'boolean', value: true, description: 'Enable support for capabilities')
|
||||
option('enable_systemd', type: 'boolean', value: true, description: 'Enable support for logind')
|
||||
option('enable_elogind', type: 'boolean', value: true, description: 'Enable support for logind')
|
||||
option('enable_xwayland', type: 'boolean', value: true, description: 'Enable support X11 applications')
|
||||
|
@ -1,17 +1,20 @@
|
||||
sources = [
|
||||
'config.c',
|
||||
'cursor.c',
|
||||
'desktop.c',
|
||||
'ini.c',
|
||||
'input.c',
|
||||
'keyboard.c',
|
||||
'main.c',
|
||||
'output.c',
|
||||
'pointer.c',
|
||||
'tablet_tool.c',
|
||||
'xdg_shell_v6.c',
|
||||
'wl_shell.c',
|
||||
]
|
||||
if get_option('enable_xwayland')
|
||||
sources += ['xwayland.c']
|
||||
endif
|
||||
executable(
|
||||
'rootston', [
|
||||
'config.c',
|
||||
'cursor.c',
|
||||
'desktop.c',
|
||||
'ini.c',
|
||||
'input.c',
|
||||
'keyboard.c',
|
||||
'main.c',
|
||||
'output.c',
|
||||
'pointer.c',
|
||||
'tablet_tool.c',
|
||||
'xdg_shell_v6.c',
|
||||
'xwayland.c',
|
||||
'wl_shell.c',
|
||||
], dependencies: wlroots
|
||||
'rootston', sources, dependencies: wlroots
|
||||
)
|
||||
|
Loading…
Reference in new issue