Merge dependency option in meson build
- The intent behind this commit is to merge dependency option in
meson build.
- When using `meson build` to compile it, the warning message is:
WARNING: Keyword argument "dependencies" defined multiple times.
- Also, we have included sdbusplus_dep in deps, and it is defined
in line:99 for the first time, so we need to merge them.
Tested: built ledManager repo successfully and no found warning
message.
Signed-off-by: George Liu <liuxiwei@inspur.com>
Change-Id: I5c003227ffc3c9b2ecfd6333b97abc3f64f2d7a3
diff --git a/meson.build b/meson.build
index f0c7d11..46b90af 100644
--- a/meson.build
+++ b/meson.build
@@ -163,7 +163,6 @@
sources,
generated_sources,
include_directories: include_directories('gen'),
- dependencies: sdbusplus_dep,
implicit_include_directories: true,
dependencies: deps,
install: true,