| boost_dep = dependency('boost', required : false) | |
| sdbusplus_dep = dependency('sdbusplus', required : false) | |
| boot_time_monitor_pre = [ | |
| boost_dep, | |
| sdbusplus_dep, | |
| ] | |
| libexecdir = get_option('prefix') / get_option('libexecdir') | |
| executable( | |
| 'boot-time-monitor', | |
| 'main.cpp', | |
| implicit_include_directories: false, | |
| dependencies: boot_time_monitor_pre, | |
| install: true, | |
| install_dir: libexecdir | |
| ) |