meson: Fix local build of phosphor-power-sequencer tests
The commit df4e0e7ea47e67b3c646a41821743f5dc5f7cbfd
("meson: Fix local meson build") didn't add the necessary dependency
for the 'phosphor-power-sequencer' tests local build.
Add 'phosphor_logging' dependency to fix the issue.
Tested:
"meson setup build && cd build && meson compile" finishes successfully.
Change-Id: I72f310e14356286a2efd48056bea5131fb088743
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
diff --git a/phosphor-power-sequencer/test/meson.build b/phosphor-power-sequencer/test/meson.build
index 9d1547b..db90ffd 100644
--- a/phosphor-power-sequencer/test/meson.build
+++ b/phosphor-power-sequencer/test/meson.build
@@ -7,7 +7,8 @@
dependencies: [
gmock,
gtest,
- nlohmann_json_dep
+ nlohmann_json_dep,
+ phosphor_logging
],
link_args: dynamic_linker,
build_rpath: get_option('oe-sdk').allowed() ? rpath : '',