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