diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-11-25 10:46:00 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-11-25 10:46:00 +0100 |
| commit | 352755aac7cb1ea7fd8bcdbf765253ec33f8b93f (patch) | |
| tree | 37eb95aeb8f5cc217de902258bf90bb0c9ba6472 /protocols | |
| parent | bfdc383c3c20b4dc1b1792ba90c8bd74e2cf2855 (diff) | |
build: drop wayland-scanner fallback
(cherry picked from commit 366f6ef3d31688631dc453028e108f98a1d7ab57)
Diffstat (limited to 'protocols')
| -rw-r--r-- | protocols/meson.build | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/protocols/meson.build b/protocols/meson.build index f18ab6f4..bc5c35fd 100644 --- a/protocols/meson.build +++ b/protocols/meson.build @@ -1,14 +1,10 @@ wl_protocol_dir = wayland_protos.get_variable('pkgdatadir') -wayland_scanner_dep = dependency('wayland-scanner', required: false, native: true) -if wayland_scanner_dep.found() - wayland_scanner = find_program( - wayland_scanner_dep.get_variable(pkgconfig: 'wayland_scanner'), - native: true, - ) -else - wayland_scanner = find_program('wayland-scanner', native: true) -endif +wayland_scanner_dep = dependency('wayland-scanner', native: true) +wayland_scanner = find_program( + wayland_scanner_dep.get_variable(pkgconfig: 'wayland_scanner'), + native: true, +) protocols = [ wl_protocol_dir / 'stable/xdg-shell/xdg-shell.xml', |
