Skip to content

Commit f81c19e

Browse files
Fix meson.build deprecations up to 0.56.0 (#119) (#125)
Co-authored-by: Rick Calixte <[email protected]>
1 parent 399bccd commit f81c19e

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

installed-tests/js/libgjstesttools/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ libgjstesttools = library('gjstesttools',
1313
gjstest_tools_gir = gnome.generate_gir(libgjstesttools,
1414
includes: ['GObject-2.0', 'Gio-2.0'], sources: gjstest_tools_sources,
1515
namespace: 'GjsTestTools', nsversion: '1.0',
16-
symbol_prefix: 'gjs_test_tools_', extra_args: '--warn-error',
16+
symbol_prefix: 'gjs_test_tools_', fatal_warnings: get_option('werror'),
1717
install: get_option('installed_tests'), install_dir_gir: false,
1818
install_dir_typelib: installed_tests_execdir)
1919
gjstest_tools_typelib = gjstest_tools_gir[1]

installed-tests/js/meson.build

+4-3
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,10 @@ libregress = library('regress', regress_sources,
7373
regress_gir = gnome.generate_gir(libregress, includes: regress_gir_includes,
7474
sources: regress_sources, namespace: 'Regress', nsversion: '1.0',
7575
identifier_prefix: 'Regress', symbol_prefix: 'regress_',
76-
extra_args: ['--warn-all', '--warn-error'] + regress_gir_c_args,
76+
extra_args: ['--warn-all'] + regress_gir_c_args,
7777
install: get_option('installed_tests'), install_dir_gir: false,
78-
install_dir_typelib: installed_tests_execdir)
78+
install_dir_typelib: installed_tests_execdir,
79+
fatal_warnings: get_option('werror'))
7980
regress_typelib = regress_gir[1]
8081

8182
if not skip_warnlib
@@ -104,7 +105,7 @@ libgimarshallingtests = library('gimarshallingtests',
104105
gimarshallingtests_gir = gnome.generate_gir(libgimarshallingtests,
105106
includes: ['Gio-2.0'], sources: gimarshallingtests_sources,
106107
namespace: 'GIMarshallingTests', nsversion: '1.0',
107-
symbol_prefix: 'gi_marshalling_tests_', extra_args: '--warn-error',
108+
symbol_prefix: 'gi_marshalling_tests_', fatal_warnings: get_option('werror'),
108109
install: get_option('installed_tests'), install_dir_gir: false,
109110
install_dir_typelib: installed_tests_execdir)
110111
gimarshallingtests_typelib = gimarshallingtests_gir[1]

meson.build

+2-2
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ libgjs_dep = declare_dependency(link_with: [libgjs, libgjs_jsapi],
595595
gjs_private_gir = gnome.generate_gir(libgjs,
596596
includes: ['GObject-2.0', 'Gio-2.0'], sources: libgjs_private_sources,
597597
namespace: 'CjsPrivate', nsversion: '1.0', identifier_prefix: 'Gjs',
598-
symbol_prefix: 'gjs_', extra_args: '--warn-error', install: true,
598+
symbol_prefix: 'gjs_', fatal_warnings: get_option('werror'), install: true,
599599
install_dir_gir: false, install_dir_typelib: pkglibdir / 'girepository-1.0')
600600
gjs_private_typelib = gjs_private_gir[1]
601601

@@ -642,7 +642,7 @@ js_tests_builddir = meson.current_build_dir() / 'installed-tests' / 'js'
642642
libgjs_test_tools_builddir = js_tests_builddir / 'libgjstesttools'
643643
# GJS_PATH is empty here since we want to force the use of our own
644644
# resources. G_FILENAME_ENCODING ensures filenames are not UTF-8
645-
tests_environment.set('TOP_BUILDDIR', meson.build_root())
645+
tests_environment.set('TOP_BUILDDIR', meson.project_build_root())
646646
tests_environment.set('GJS_USE_UNINSTALLED_FILES', '1')
647647
tests_environment.set('GJS_PATH', '')
648648
tests_environment.set('GJS_DEBUG_OUTPUT', 'stderr')

0 commit comments

Comments
 (0)