From d9d10684f0fe10609decff239d748afc6a834eb3 Mon Sep 17 00:00:00 2001 From: centaurii Date: Mon, 24 Oct 2022 20:14:23 +0000 Subject: replace source_root() calls with global_source_root() --- docs/reference/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/meson.build b/docs/reference/meson.build index 582739a..2851d15 100644 --- a/docs/reference/meson.build +++ b/docs/reference/meson.build @@ -1,7 +1,7 @@ gnome.gtkdoc(meson.project_name(), mode: 'sgml', main_sgml: meson.project_name() + '-docs.sgml', - src_dir: join_paths(meson.source_root(), meson.project_name()), + src_dir: join_paths(meson.global_source_root(), meson.project_name()), dependencies: libnotify_dep, gobject_typesfile: meson.project_name() + '.types', ignore_headers: ['notify-enum-types.h', 'notify-marshal.h', 'internal.h'], -- cgit v1.2.1 From 39be406468bc961501184fe1d06fd43c7e608282 Mon Sep 17 00:00:00 2001 From: centaurii Date: Mon, 24 Oct 2022 20:20:10 +0000 Subject: bump minimum meson version to 0.58 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9fef085..5896648 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('libnotify', 'c', version: '0.8.1', - meson_version: '>= 0.47.0') + meson_version: '>= 0.58.0') gnome = import('gnome') pkgconfig = import('pkgconfig') -- cgit v1.2.1 From c4865149efb9eaba01f6559cb11532d380e34cd0 Mon Sep 17 00:00:00 2001 From: Kai Smith Date: Tue, 25 Oct 2022 23:45:00 +0000 Subject: use project_source_root() instead of global_source_root() --- docs/reference/meson.build | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/meson.build b/docs/reference/meson.build index 2851d15..148ff31 100644 --- a/docs/reference/meson.build +++ b/docs/reference/meson.build @@ -1,7 +1,7 @@ gnome.gtkdoc(meson.project_name(), mode: 'sgml', main_sgml: meson.project_name() + '-docs.sgml', - src_dir: join_paths(meson.global_source_root(), meson.project_name()), + src_dir: join_paths(meson.project_source_root(), meson.project_name()), dependencies: libnotify_dep, gobject_typesfile: meson.project_name() + '.types', ignore_headers: ['notify-enum-types.h', 'notify-marshal.h', 'internal.h'], diff --git a/meson.build b/meson.build index 5896648..147fcb8 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('libnotify', 'c', version: '0.8.1', - meson_version: '>= 0.58.0') + meson_version: '>= 0.56.0') gnome = import('gnome') pkgconfig = import('pkgconfig') -- cgit v1.2.1