ec0b717d77
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: yj1231.heo <yj1231.heo@samsung.com>
21 lines
471 B
Meson
21 lines
471 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
|