parent
decd87043f
commit
9cab66f0f9
@ -1,3 +1,4 @@
|
|||||||
option('enable_libcap', type: 'boolean', value: true, description: 'Enable support for capabilities')
|
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_systemd', type: 'boolean', value: true, description: 'Enable support for logind')
|
||||||
option('enable_elogind', 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(
|
executable(
|
||||||
'rootston', [
|
'rootston', sources, dependencies: wlroots
|
||||||
'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
|
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in new issue