1psutils = executable(
2    'psutils',
3    'version.cpp',
4    'updater.cpp',
5    'main.cpp',
6    dependencies: [
7        cli11_dep,
8        libi2c_dep,
9        nlohmann_json_dep,
10        phosphor_dbus_interfaces,
11        phosphor_logging,
12    ],
13    include_directories: [libpower_inc, libi2c_inc],
14    install: true,
15    link_with: [
16        libpower,
17    ]
18)
19
20if get_option('tests').enabled()
21    subdir('test')
22endif
23