diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2019-03-15 15:17:46 +0200 |
---|---|---|
committer | Tomas Popela <tpopela@redhat.com> | 2019-03-18 05:58:07 +0000 |
commit | f426de737a6d8815098940d3bf839bb7aaa575e8 (patch) | |
tree | ad4551db9f74e2b290a12fb65b62a0f3ff14456c /libsoup/meson.build | |
parent | 6c38fe7a2a9c162303dd2675eecd080c45c8e9f1 (diff) | |
download | libsoup-f426de737a6d8815098940d3bf839bb7aaa575e8.tar.gz |
meson: cleanup targets dependencies
This fixes issues when adding new symbols and building with
introspection enabled. Additionally, the workaround for
tests seems to be unneeded.
Diffstat (limited to 'libsoup/meson.build')
-rw-r--r-- | libsoup/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsoup/meson.build b/libsoup/meson.build index 92b615f4..bfef032d 100644 --- a/libsoup/meson.build +++ b/libsoup/meson.build @@ -290,6 +290,7 @@ if enable_introspection or enable_vapi soup_enum_h, soup_version_h ], + dependencies : libsoup_dep, nsversion : apiversion, namespace : soup_ns, symbol_prefix : soup_ns.to_lower(), @@ -301,9 +302,8 @@ if enable_introspection or enable_vapi header: join_paths(meson.project_name(), 'soup.h'), ) - soup_gir_gen_dep = declare_dependency(link_with : libsoup, - include_directories : configinc, - dependencies : deps, + soup_gir_gen_dep = declare_dependency( + dependencies : libsoup_dep, sources : soup_gir_gen_sources) if enable_vapi |