blob: ceaad7df70d12bb2caada8d01b8fb05ecff5bc88 [file] [log] [blame]
Ben Tyner73ac3682020-01-09 10:46:47 -06001# async gpio monitor needs boost library
2boost_args = ['-DBOOST_ASIO_DISABLE_THREADS',
3 '-DBOOST_ERROR_CODE_HEADER_ONLY',
4 '-DBOOST_SYSTEM_NO_DEPRECATED']
5
Ben Tyner73ac3682020-01-09 10:46:47 -06006# dependency to link gpiod support
7libgpiod = dependency('libgpiod', version : '>=1.4.1')
8
Ben Tynerdb37c892020-02-19 13:08:48 -06009# install systemd unit file
10configure_file(
11 input: 'attn_handler.service',
12 output: 'attn_handler.service',
13 copy: true,
14 install_dir:
15 dependency('systemd').get_pkgconfig_variable(
16 'systemdsystemunitdir')
17)
Ben Tyner0205f3b2020-02-24 10:24:47 -060018
Ben Tyner9ae5ca42020-02-28 13:13:50 -060019# see if phosphor-logging is available, if not use test case logging code
Ben Tyner13683082020-06-25 12:49:47 -050020if (true == phosphor_logging)
Ben Tynerb1ebfcb2020-05-08 18:52:48 -050021 logging_src = 'attn_logging.cpp'
Ben Tyner9ae5ca42020-02-28 13:13:50 -060022else
23 logging_src = '../test/end2end/logging.cpp'
24endif
25
26# gather attention sources to be used here and elsewhere if needed
27attn_src = files('attn_main.cpp', 'attn_handler.cpp', 'attn_monitor.cpp',
Ben Tynerb481d902020-03-05 10:24:23 -060028 'bp_handler.cpp', 'ti_handler.cpp', logging_src,
Ben Tyner3fb52e52020-03-31 10:10:07 -050029 'attention.cpp', 'attn_config.cpp')
Ben Tyner9ae5ca42020-02-28 13:13:50 -060030
31# Create attention handler library
Ben Tyner0205f3b2020-02-24 10:24:47 -060032attn = static_library('attn_handler',
Ben Tyner9ae5ca42020-02-28 13:13:50 -060033 attn_src,
34 include_directories : incdir,
Zane Shelleyf80482a2020-12-02 15:13:13 -060035 dependencies : [libpdbg_dep, sdbusplus_dep, libgpiod],
Ben Tyner13683082020-06-25 12:49:47 -050036 cpp_args : [boost_args, test_arg],
Ben Tyner9ae5ca42020-02-28 13:13:50 -060037 install : true)