blob: 00b006f67867331e78c65bce4ae6832380ace008 [file] [log] [blame]
cpp_args = boost_args + ['-DPACKAGE_DIR="' + packagedir + '/"']
cpp_args += ['-DSYSCONF_DIR="' + sysconfdir + '/"' ]
installdir = join_paths(get_option('libexecdir'), 'entity-manager')
executable(
'entity-manager',
'entity_manager.cpp',
'expression.cpp',
'perform_scan.cpp',
'perform_probe.cpp',
'overlay.cpp',
'topology.cpp',
'utils.cpp',
cpp_args: cpp_args + ['-DBOOST_ASIO_DISABLE_THREADS'],
dependencies: [
boost,
nlohmann_json_dep,
phosphor_logging_dep,
sdbusplus,
valijson,
],
install: true,
install_dir: installdir,
)
if get_option('fru-device')
cpp_args_fd = cpp_args
if get_option('fru-device-resizefru')
cpp_args_fd = cpp_args_fd + ['-DENABLE_FRU_AREA_RESIZE']
endif
executable(
'fru-device',
'expression.cpp',
'fru_device.cpp',
'utils.cpp',
'fru_utils.cpp',
'fru_reader.cpp',
cpp_args: cpp_args_fd,
dependencies: [
boost,
i2c,
nlohmann_json_dep,
phosphor_logging_dep,
sdbusplus,
threads,
valijson,
],
install: true,
install_dir: installdir,
)
endif
if get_option('devicetree-vpd')
cpp_args_fd = cpp_args
executable(
'devicetree-vpd-parser',
'machine_context.cpp',
'devicetree_vpd_parser.cpp',
cpp_args: cpp_args_fd,
dependencies: [
sdbusplus,
phosphor_dbus_interfaces_dep,
],
install: true,
install_dir: installdir,
)
endif