meson: reformat with meson formatter
Apply the `meson format` results.
Change-Id: I116103d8e0994e09ecb6381f5bb7d564608826b2
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/tools/meson.build b/tools/meson.build
index eda5e19..e9eccbd 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -1,43 +1,47 @@
tools_inc = include_directories('.')
updater_pre = [
- dependency('ipmiblob'),
- dependency('pciaccess', fallback: ['pciaccess', 'dep_pciaccess']),
- dependency('stdplus', fallback: ['stdplus', 'stdplus_dep']),
- blobs_dep,
- sys_dep]
+ dependency('ipmiblob'),
+ dependency('pciaccess', fallback: ['pciaccess', 'dep_pciaccess']),
+ dependency('stdplus', fallback: ['stdplus', 'stdplus_dep']),
+ blobs_dep,
+ sys_dep,
+]
updater_lib = static_library(
- 'updater_lib',
- 'updater.cpp',
- 'handler.cpp',
- 'helper.cpp',
- 'bt.cpp',
- 'lpc.cpp',
- 'io.cpp',
- 'net.cpp',
- 'pci.cpp',
- 'pciaccess.cpp',
- 'p2a.cpp',
- 'progress.cpp',
- conf_h,
- dependencies: updater_pre,
- include_directories: root_inc)
+ 'updater_lib',
+ 'updater.cpp',
+ 'handler.cpp',
+ 'helper.cpp',
+ 'bt.cpp',
+ 'lpc.cpp',
+ 'io.cpp',
+ 'net.cpp',
+ 'pci.cpp',
+ 'pciaccess.cpp',
+ 'p2a.cpp',
+ 'progress.cpp',
+ conf_h,
+ dependencies: updater_pre,
+ include_directories: root_inc,
+)
updater_dep = declare_dependency(
- dependencies: updater_pre,
- include_directories: root_inc,
- link_with: updater_lib)
+ dependencies: updater_pre,
+ include_directories: root_inc,
+ link_with: updater_lib,
+)
executable(
- 'burn_my_bmc',
- 'main.cpp',
- implicit_include_directories: false,
- dependencies: updater_dep,
- include_directories: root_inc,
- install: true,
- install_dir: get_option('bindir'))
+ 'burn_my_bmc',
+ 'main.cpp',
+ implicit_include_directories: false,
+ dependencies: updater_dep,
+ include_directories: root_inc,
+ install: true,
+ install_dir: get_option('bindir'),
+)
if get_option('tests').allowed()
- subdir('test')
+ subdir('test')
endif