Skip to content
Snippets Groups Projects
Commit ec0b717d authored by YJ Heo's avatar YJ Heo Committed by YJ Heo
Browse files

fullscreen-shell : fullscreen-shell doesn't support the screenshooter


wet_shell_init() of fulscreen-shell has been missing to create a
screenshooter.

 . adding a screenshooter_create() on wel_shell_init() for
 fullscreen-shell.
 . adding a dep_libexe_weston to meson.build to use the screenshooter

Signed-off-by: default avataryj1231.heo <yj1231.heo@samsung.com>
parent d259bbec
No related branches found
No related tags found
2 merge requests!905color-lcms: Introduction and implementation of LCMS plugin,!635fullscreen-shell : fullscreen-shell doesn't support the screenshooter
Pipeline #393069 passed
......@@ -937,5 +937,6 @@ wet_shell_init(struct weston_compositor *compositor,
&zwp_fullscreen_shell_v1_interface, 1, shell,
bind_fullscreen_shell);
screenshooter_create(compositor);
return 0;
}
......@@ -4,11 +4,15 @@ if get_option('shell-fullscreen')
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: dep_libweston_public,
dependencies: deps_shell_fullscreen,
name_prefix: '',
install: true,
install_dir: dir_module_weston
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment