mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2025-12-28 14:30:12 +01:00
Do not build matrix.c into the shell plugins. The matrix functions are exported by libweston.so and the shell plugins links to it. Found by inspection. Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.com>
16 lines
417 B
Meson
16 lines
417 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,
|
|
]
|
|
shared_library(
|
|
'fullscreen-shell',
|
|
srcs_shell_fullscreen,
|
|
include_directories: include_directories('..', '../shared'),
|
|
dependencies: dep_libweston,
|
|
name_prefix: '',
|
|
install: true,
|
|
install_dir: dir_module_weston
|
|
)
|
|
endif
|