Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

build: meson: compile without wayland support #442

Merged
merged 1 commit into from
Jan 29, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,22 @@ if get_option('with_wayland') != 'no'

if wayland_client_dep.found()
prefix = wayland_client_dep.get_pkgconfig_variable('prefix')
wl_scanner = find_program(
'wayland-scanner',
join_paths(prefix, '/bin/wayland-scanner'))
wayland_scanner = join_paths(prefix, 'bin', 'wayland-scanner')
else
wayland_scanner = ''
endif

wl_scanner = find_program('wayland-scanner', wayland_scanner,
required : get_option('with_wayland') == 'yes')

libva_wayland_dep = dependency(
'libva-wayland',
version : libva_version,
required : get_option('with_wayland') == 'yes')

WITH_WAYLAND = wl_scanner.found() and libva_wayland_dep.found()
WITH_WAYLAND = (wayland_client_dep.found()
and wl_scanner.found()
and libva_wayland_dep.found())
endif

subdir('src')
Expand Down