2016-11-24 18:54:51 +03:00
|
|
|
if get_option('shell-fullscreen')
|
|
|
|
srcs_shell_fullscreen = [
|
|
|
|
'fullscreen-shell.c',
|
|
|
|
fullscreen_shell_unstable_v1_server_protocol_h,
|
|
|
|
fullscreen_shell_unstable_v1_protocol_c,
|
|
|
|
]
|
2022-02-23 16:31:26 +03:00
|
|
|
deps_shell_fullscreen = [
|
2021-06-07 07:53:28 +03:00
|
|
|
dep_libweston_public,
|
|
|
|
dep_libexec_weston,
|
2022-02-23 16:31:26 +03:00
|
|
|
dep_shell_utils,
|
2021-06-07 07:53:28 +03:00
|
|
|
]
|
2016-11-24 18:54:51 +03:00
|
|
|
shared_library(
|
|
|
|
'fullscreen-shell',
|
|
|
|
srcs_shell_fullscreen,
|
2019-04-05 17:09:28 +03:00
|
|
|
include_directories: common_inc,
|
2021-06-07 07:53:28 +03:00
|
|
|
dependencies: deps_shell_fullscreen,
|
2016-11-24 18:54:51 +03:00
|
|
|
name_prefix: '',
|
|
|
|
install: true,
|
|
|
|
install_dir: dir_module_weston
|
|
|
|
)
|
|
|
|
endif
|