mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-21 22:52:20 +00:00
build: simplify get_variable calls
With recent-ish Meson we can stop repeating the variable name for each provider.
This commit is contained in:
parent
2e590026e9
commit
0c5ff5efab
@ -1,7 +1,7 @@
|
|||||||
have_listenfd = false
|
have_listenfd = false
|
||||||
if xwayland.found()
|
if xwayland.found()
|
||||||
xwayland_path = xwayland.get_variable(pkgconfig: 'xwayland')
|
xwayland_path = xwayland.get_variable('xwayland')
|
||||||
have_listenfd = xwayland.get_variable(pkgconfig: 'have_listenfd') == 'true'
|
have_listenfd = xwayland.get_variable('have_listenfd') == 'true'
|
||||||
else
|
else
|
||||||
xwayland_path = xwayland_prog.full_path()
|
xwayland_path = xwayland_prog.full_path()
|
||||||
endif
|
endif
|
||||||
|
@ -3,11 +3,11 @@ wayland_protos = dependency('wayland-protocols',
|
|||||||
fallback: ['wayland-protocols', 'wayland_protocols'],
|
fallback: ['wayland-protocols', 'wayland_protocols'],
|
||||||
default_options: ['tests=false'],
|
default_options: ['tests=false'],
|
||||||
)
|
)
|
||||||
wl_protocol_dir = wayland_protos.get_variable(pkgconfig: 'pkgdatadir', internal: 'pkgdatadir')
|
wl_protocol_dir = wayland_protos.get_variable('pkgdatadir')
|
||||||
|
|
||||||
wayland_scanner_dep = dependency('wayland-scanner', native: true)
|
wayland_scanner_dep = dependency('wayland-scanner', native: true)
|
||||||
wayland_scanner = find_program(
|
wayland_scanner = find_program(
|
||||||
wayland_scanner_dep.get_variable(pkgconfig: 'wayland_scanner'),
|
wayland_scanner_dep.get_variable('wayland_scanner'),
|
||||||
native: true,
|
native: true,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user