diff options
author | Ondrej Holy <oholy@redhat.com> | 2022-08-05 10:23:56 +0200 |
---|---|---|
committer | António Fernandes <antoniof@gnome.org> | 2022-08-06 12:40:58 +0000 |
commit | 673e6b157a125e321049d4abea3bb5a6ddc7570e (patch) | |
tree | 2f94baaca9314855ab77de7f8f8fcf519c6eec8e /meson.build | |
parent | fff9e924c6033ed9438cc49d271662b621d70a3f (diff) | |
download | nautilus-673e6b157a125e321049d4abea3bb5a6ddc7570e.tar.gz |
sidebar: Build with cloudproviders support
The cloudproviders integration used to be part of GTK 3 version, but
it is not part of GTK 4 version. This is because the sidebar codes
are now part of Nautilus codebase and `HAVE_CLOUDPROVIDERS` is never
set. Let's allow to build with cloudproviders support again.
Related: https://gitlab.gnome.org/GNOME/nautilus/-/issues/2392
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 51437ae45..e6c45f53b 100644 --- a/meson.build +++ b/meson.build @@ -117,6 +117,7 @@ if get_option('selinux') endif tracker_sparql = dependency('tracker-sparql-3.0') xml = dependency('libxml-2.0', version: '>= 2.7.8') +cloudproviders_dep = dependency('cloudproviders', version: '>= 0.3.1') #################### # End dependencies # |