meson: reformat with meson formatter
Apply the `meson format` results.
Change-Id: I5c12cbb40f60bc895bdaff4957c9e62c851038e6
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/meson.build b/meson.build
index 060907c..fe36320 100644
--- a/meson.build
+++ b/meson.build
@@ -12,17 +12,17 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-project('dbus-top', 'cpp',
+project(
+ 'dbus-top',
+ 'cpp',
version: '0.1',
- default_options:
- [
- 'cpp_std=c++23',
- ],
+ default_options: ['cpp_std=c++23'],
meson_version: '>=1.1.1',
)
bindir = get_option('prefix') / get_option('bindir')
-executable('dbus-top',
+executable(
+ 'dbus-top',
[
'menu.cpp',
'analyzer.cpp',
@@ -32,13 +32,12 @@
'views.cpp',
'main.cpp',
],
- dependencies:
- [
+ dependencies: [
dependency('libsystemd'),
dependency('sdbusplus'),
dependency('ncurses'),
dependency('threads'),
],
install: true,
- install_dir: bindir
+ install_dir: bindir,
)