From f7d9d0555cc2d73769353440e8910378ae889f5d Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Sun, 21 Jun 2020 18:55:25 +0300 Subject: [PATCH] meson: keep track of changes in Cargo.toml and lockfile --- meson.build | 8 ++++++++ podcasts-gtk/src/meson.build | 1 + 2 files changed, 9 insertions(+) diff --git a/meson.build b/meson.build index b55b3ba..0309c7f 100644 --- a/meson.build +++ b/meson.build @@ -40,6 +40,14 @@ else version_suffix = '' endif +podcast_toml = files( + 'Cargo.toml', + 'Cargo.lock', + 'podcasts-data/Cargo.toml', + 'podcasts-downloader/Cargo.toml', + 'podcasts-gtk/Cargo.toml', +) + application_id = 'org.gnome.Podcasts@0@'.format(profile) i18n = import('i18n') gnome = import('gnome') diff --git a/podcasts-gtk/src/meson.build b/podcasts-gtk/src/meson.build index f49f393..91b095e 100644 --- a/podcasts-gtk/src/meson.build +++ b/podcasts-gtk/src/meson.build @@ -61,6 +61,7 @@ podcasts_sources = files( cargo_release = custom_target('cargo-build', build_by_default: true, input: [ + podcast_toml, data_sources, downloader_sources, podcasts_sources,