weston/fullscreen-shell/meson.build
Marius Vlad 19d32da742 shell-utils: Integrate shell-utils into libweston
These shell utils functions are potentially useful to other shells as
well, so make them widely available.

Renamed all functions to weston_shell_utils namespace.

No functional change, copied ad litteram.

Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
2023-01-09 22:13:07 +00:00

21 lines
473 B
Meson

if get_option('shell-fullscreen')
srcs_shell_fullscreen = [
'fullscreen-shell.c',
fullscreen_shell_unstable_v1_server_protocol_h,
fullscreen_shell_unstable_v1_protocol_c,
]
deps_shell_fullscreen = [
dep_libweston_public,
dep_libexec_weston,
]
shared_library(
'fullscreen-shell',
srcs_shell_fullscreen,
include_directories: common_inc,
dependencies: deps_shell_fullscreen,
name_prefix: '',
install: true,
install_dir: dir_module_weston
)
endif