diff options
author | Eric Engestrom <[email protected]> | 2019-10-27 00:48:36 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-10-31 15:29:06 +0000 |
commit | 4072b3360b997afbd74e4f9e034f9b43e711b06d (patch) | |
tree | 89d79fdba018f0e2557ab8d1450a58d9d6985c10 /src/util | |
parent | bf15318991e3111fa3d94a9d3d564c7c539b9f23 (diff) |
meson: split out idep_xmlconfig_headers from idep_xmlconfig
A bunch of components need the former but not the latter.
Signed-off-by: Eric Engestrom <[email protected]>
Acked-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/meson.build | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/util/meson.build b/src/util/meson.build index 363447fddf4..ce50d81e688 100644 --- a/src/util/meson.build +++ b/src/util/meson.build @@ -187,11 +187,14 @@ _libxmlconfig = static_library( build_by_default : false, ) -idep_xmlconfig = declare_dependency( +idep_xmlconfig_headers = declare_dependency( sources : xmlpool_options_h, include_directories : inc_util, +) + +idep_xmlconfig = declare_dependency( + dependencies : [idep_xmlconfig_headers, dep_expat], link_with : _libxmlconfig, - dependencies : dep_expat, ) if with_tests |