File: meson.build

package info (click to toggle)
weston 14.0.91-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 11,292 kB
  • sloc: ansic: 166,537; xml: 1,274; cpp: 480; python: 106; sh: 39; makefile: 33
file content (22 lines) | stat: -rw-r--r-- 623 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
if get_option('deprecated-shell-fullscreen')
        warning('deprecated-shell-fullscreen enabled. This will go away, see https://gitlab.freedesktop.org/wayland/weston/-/issues/848')

	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