aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorMark Bolhuis <mark@bolhuis.dev>2022-09-07 00:59:08 +0100
committerXavier Claessens <xclaesse@gmail.com>2022-09-07 08:43:29 -0400
commitb6235a2e42deb417f13cb9411e0c6feb2a4ab995 (patch)
tree886f7493d05b9aa4b3202e8f732d9d7cec15bdab /test cases
parent25f838fd3328273733976b16775142a58e3db275 (diff)
downloadmeson-b6235a2e42deb417f13cb9411e0c6feb2a4ab995.zip
meson-b6235a2e42deb417f13cb9411e0c6feb2a4ab995.tar.gz
meson-b6235a2e42deb417f13cb9411e0c6feb2a4ab995.tar.bz2
modules/wayland: Rename core_only to include_core_only
Rename the core_only option in scan_xml to include_core_only to match the flag used by wayland-scanner.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/wayland/2 core only/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/wayland/2 core only/meson.build b/test cases/wayland/2 core only/meson.build
index bb98992..a35e981 100644
--- a/test cases/wayland/2 core only/meson.build
+++ b/test cases/wayland/2 core only/meson.build
@@ -9,6 +9,6 @@ wl_mod = import('unstable-wayland')
wl_client_dep = dependency('wayland-client')
xdg_shell_xml = wl_mod.find_protocol('xdg-shell')
-xdg_shell = wl_mod.scan_xml(xdg_shell_xml, core_only : true)
+xdg_shell = wl_mod.scan_xml(xdg_shell_xml, include_core_only : true)
exe = executable('core', 'core.c', xdg_shell, dependencies : wl_client_dep)
test('core', exe)