Ben Tyner | 73ac368 | 2020-01-09 10:46:47 -0600 | [diff] [blame] | 1 | # async gpio monitor needs boost library |
| 2 | boost_args = ['-DBOOST_ASIO_DISABLE_THREADS', |
| 3 | '-DBOOST_ERROR_CODE_HEADER_ONLY', |
| 4 | '-DBOOST_SYSTEM_NO_DEPRECATED'] |
| 5 | |
Ben Tyner | 73ac368 | 2020-01-09 10:46:47 -0600 | [diff] [blame] | 6 | # dependency to link gpiod support |
| 7 | libgpiod = dependency('libgpiod', version : '>=1.4.1') |
| 8 | |
Ben Tyner | db37c89 | 2020-02-19 13:08:48 -0600 | [diff] [blame] | 9 | # install systemd unit file |
| 10 | configure_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 Tyner | 0205f3b | 2020-02-24 10:24:47 -0600 | [diff] [blame] | 18 | |
Ben Tyner | 9ae5ca4 | 2020-02-28 13:13:50 -0600 | [diff] [blame] | 19 | # see if phosphor-logging is available, if not use test case logging code |
Ben Tyner | 1368308 | 2020-06-25 12:49:47 -0500 | [diff] [blame] | 20 | if (true == phosphor_logging) |
Ben Tyner | b1ebfcb | 2020-05-08 18:52:48 -0500 | [diff] [blame] | 21 | logging_src = 'attn_logging.cpp' |
Ben Tyner | 9ae5ca4 | 2020-02-28 13:13:50 -0600 | [diff] [blame] | 22 | else |
| 23 | logging_src = '../test/end2end/logging.cpp' |
| 24 | endif |
| 25 | |
Zane Shelley | c252894 | 2020-12-02 15:42:42 -0600 | [diff] [blame] | 26 | # Source files. |
| 27 | attn_src = files( |
| 28 | 'attn_config.cpp', |
| 29 | 'attention.cpp', |
| 30 | 'attn_handler.cpp', |
| 31 | 'attn_main.cpp', |
| 32 | 'attn_monitor.cpp', |
| 33 | 'bp_handler.cpp', |
| 34 | logging_src, |
| 35 | 'ti_handler.cpp', |
| 36 | ) |
Ben Tyner | 9ae5ca4 | 2020-02-28 13:13:50 -0600 | [diff] [blame] | 37 | |
Zane Shelley | c252894 | 2020-12-02 15:42:42 -0600 | [diff] [blame] | 38 | # Library dependencies. |
| 39 | attn_deps = [ |
| 40 | libgpiod, |
| 41 | libpdbg_dep, |
| 42 | sdbusplus_dep, |
| 43 | ] |
| 44 | |
| 45 | # Create static library. |
| 46 | attn_lib = static_library( |
| 47 | 'attn_lib', |
| 48 | attn_src, |
| 49 | include_directories : incdir, |
| 50 | dependencies : attn_deps, |
| 51 | cpp_args : [boost_args, test_arg], |
| 52 | install : false, |
| 53 | ) |
| 54 | |