Replace it with `get_variable(pkgconfig:...)`.
endif
if x11_enabled
- x11_data_prefix = dependency('x11').get_pkgconfig_variable('prefix')
+ x11_data_prefix = dependency('x11').get_variable(pkgconfig: 'prefix')
gtk_cargs += [ '-DX11_DATA_PREFIX="@0@"'.format(x11_data_prefix), ]
gtk_sources += gtk_x11_sources
cdata.set('HAVE_COLORD', colord_dep.found())
if iso_codes_dep.found()
- cdata.set_quoted('ISO_CODES_PREFIX', iso_codes_dep.get_pkgconfig_variable('prefix'))
+ cdata.set_quoted('ISO_CODES_PREFIX', iso_codes_dep.get_variable(pkgconfig: 'prefix'))
else
cdata.set_quoted('ISO_CODES_PREFIX', '/usr')
endif
if not wlprotocolsdep.found()
wlproto_dir = subproject('wayland-protocols').get_variable('wayland_protocols_srcdir')
else
- wlproto_dir = wlprotocolsdep.get_pkgconfig_variable('pkgdatadir')
+ wlproto_dir = wlprotocolsdep.get_variable(pkgconfig: 'pkgdatadir')
endif
wayland_pkgs = [
graphene_dep_type = graphene_dep.type_name()
if graphene_dep_type == 'pkgconfig'
- graphene_has_sse2 = graphene_dep.get_pkgconfig_variable('graphene_has_sse2') == '1'
- graphene_has_gcc = graphene_dep.get_pkgconfig_variable('graphene_has_gcc') == '1'
+ graphene_has_sse2 = graphene_dep.get_variable(pkgconfig: 'graphene_has_sse2') == '1'
+ graphene_has_gcc = graphene_dep.get_variable(pkgconfig: 'graphene_has_gcc') == '1'
else
graphene_simd = subproject('graphene').get_variable('graphene_simd')
graphene_has_sse2 = graphene_simd.contains('sse2')
env = environment()
env.prepend('GI_TYPELIB_PATH',
- join_paths(project_build_root, 'gtk'),
- gi_dep.get_pkgconfig_variable('typelibdir'))
-env.prepend('LD_PRELOAD', join_paths(project_build_root, 'gtk', 'libgtk-4.so'))
+ project_build_root / 'gtk',
+ gi_dep.get_variable(pkgconfig: 'typelibdir'),
+)
+env.prepend('LD_PRELOAD', project_build_root / 'gtk' / 'libgtk-4.so')
test('api',
- find_program('api.py', dirs: meson.current_source_dir()),
- suite: ['introspection'],
- env: env)
+ find_program('api.py', dirs: meson.current_source_dir()),
+ suite: ['introspection'],
+ env: env,
+)