blob: 294644fc303ed69cdb1b5090e2e711dcb4f5968f [file] [log] [blame]
# async gpio monitor needs boost library
boost_args = ['-DBOOST_ASIO_DISABLE_THREADS',
'-DBOOST_ERROR_CODE_HEADER_ONLY',
'-DBOOST_SYSTEM_NO_DEPRECATED']
# dependency to link gpiod support
libgpiod = dependency('libgpiod', version : '>=1.4.1')
# dependency to link libpdbg support
libpdbg = cmplr.find_library('pdbg')
# install systemd unit file
configure_file(
input: 'attn_handler.service',
output: 'attn_handler.service',
copy: true,
install_dir:
dependency('systemd').get_pkgconfig_variable(
'systemdsystemunitdir')
)
# see if phosphor-logging is available, if not use test case logging code
if (true == phosphor_logging)
logging_src = 'attn_logging.cpp'
else
logging_src = '../test/end2end/logging.cpp'
endif
# gather attention sources to be used here and elsewhere if needed
attn_src = files('attn_main.cpp', 'attn_handler.cpp', 'attn_monitor.cpp',
'bp_handler.cpp', 'ti_handler.cpp', logging_src,
'attention.cpp', 'attn_config.cpp')
# Create attention handler library
attn = static_library('attn_handler',
attn_src,
include_directories : incdir,
dependencies : [libpdbg, sdbusplus_dep, libgpiod],
cpp_args : [boost_args, test_arg],
install : true)