Skip to content

Commit 7cc8fa9

Browse files
authored
chore(glib): Use project_{build,source}_root() instead of {build,source}_root() (#3043)
`{build,source}_root()` are deprecated. Fixes #3042.
1 parent a3ea191 commit 7cc8fa9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

glib/example/vala/meson.build

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919

2020
if build_example and generate_vapi
2121
vala_example_executable_kwargs = {
22-
'c_args': ['-I' + meson.build_root(), '-I' + meson.source_root()],
22+
'c_args': [
23+
'-I' + meson.project_build_root(),
24+
'-I' + meson.project_source_root(),
25+
],
2326
'dependencies': [
2427
adbc_glib_vapi,
2528
adbc_arrow_glib_vapi,

0 commit comments

Comments
 (0)