Willy Tu | c710b97 | 2021-08-11 16:33:43 -0700 | [diff] [blame] | 1 | sensorutils_lib = static_library( |
| 2 | 'sensorutils', |
| 3 | 'sensorutils.cpp', |
| 4 | include_directories: root_inc, |
| 5 | implicit_include_directories: false) |
| 6 | |
| 7 | sensorutils_dep = declare_dependency(link_with: sensorutils_lib) |
| 8 | |
| 9 | dbus_sdr_pre = declare_dependency( |
| 10 | include_directories: root_inc, |
| 11 | dependencies: [ |
| 12 | crypto, |
| 13 | phosphor_logging_dep, |
| 14 | ipmid_dep, |
| 15 | libipmi20_dep, |
| 16 | sensorutils_dep, |
| 17 | ]) |
| 18 | |
| 19 | dbus_sdr_src = [ |
Willy Tu | ba9bbb6 | 2022-06-01 03:41:15 -0700 | [diff] [blame] | 20 | 'dbus-sdr/sdrutils.cpp', |
| 21 | 'dbus-sdr/sensorcommands.cpp', |
| 22 | 'dbus-sdr/storagecommands.cpp' |
Willy Tu | c710b97 | 2021-08-11 16:33:43 -0700 | [diff] [blame] | 23 | ] |