meson: reformat with meson formatter
Apply the `meson format` results.
Change-Id: I1dbf4ae74d383552995432add3d2f548eb844ee5
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/softoff/meson.build b/softoff/meson.build
index 1d52b8e..a723c51 100644
--- a/softoff/meson.build
+++ b/softoff/meson.build
@@ -1,31 +1,34 @@
softpower_pre = [
- boost,
- ipmid_dep,
- libsystemd_dep,
- phosphor_dbus_interfaces_dep,
- phosphor_logging_dep,
- sdbusplus_dep,
- sdeventplus_dep,
- softoff_dbus,
+ boost,
+ ipmid_dep,
+ libsystemd_dep,
+ phosphor_dbus_interfaces_dep,
+ phosphor_logging_dep,
+ sdbusplus_dep,
+ sdeventplus_dep,
+ softoff_dbus,
]
softpower_lib = static_library(
- 'softpower_lib',
- 'softoff.cpp',
- conf_h,
- dependencies: softpower_pre,
- include_directories: root_inc)
+ 'softpower_lib',
+ 'softoff.cpp',
+ conf_h,
+ dependencies: softpower_pre,
+ include_directories: root_inc,
+)
softpower_dep = declare_dependency(
- dependencies: softpower_pre,
- include_directories: root_inc,
- link_with: softpower_lib)
+ dependencies: softpower_pre,
+ include_directories: root_inc,
+ link_with: softpower_lib,
+)
executable(
- 'phosphor-softpoweroff',
- 'mainapp.cpp',
- implicit_include_directories: false,
- dependencies: softpower_dep,
- include_directories: root_inc,
- install: true,
- install_dir: get_option('bindir'))
+ 'phosphor-softpoweroff',
+ 'mainapp.cpp',
+ implicit_include_directories: false,
+ dependencies: softpower_dep,
+ include_directories: root_inc,
+ install: true,
+ install_dir: get_option('bindir'),
+)