1project( 2 'phosphor-power', 3 'cpp', 4 default_options: [ 5 'warning_level=3', 6 'werror=true', 7 'cpp_std=c++17', 8 'prefix=/usr' 9 ], 10 license: 'Apache-2.0', 11 version: '1.0', 12) 13 14build_tests = get_option('tests') 15 16if get_option('oe-sdk').enabled() 17 # Setup OE SYSROOT 18 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip() 19 if OECORE_TARGET_SYSROOT == '' 20 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.') 21 endif 22 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT) 23 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib']) 24 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip() 25 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so] 26else 27 dynamic_linker = [] 28endif 29 30 31cppfs = meson.get_compiler('cpp').find_library('stdc++fs') 32gmock = dependency('gmock', disabler: true, required: build_tests) 33gtest = dependency('gtest', main: true, disabler: true, required: build_tests) 34phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') 35phosphor_logging = dependency('phosphor-logging') 36prog_python = import('python').find_installation('python') 37sdbusplus = dependency('sdbusplus') 38sdbuspp = find_program('sdbus++') 39sdeventplus = dependency('sdeventplus') 40pthread = dependency('threads') 41 42systemd = dependency('systemd') 43servicedir = systemd.get_pkgconfig_variable('systemdsystemunitdir') 44 45services = [ 46 'power-supply-monitor@.service', 47 'pseq-monitor-pgood.service', 48 'pseq-monitor.service', 49 'phosphor-psu-monitor.service', 50 'phosphor-regulators.service' 51] 52 53foreach service : services 54 configure_file(input: 'services/' + service, 55 output: service, 56 copy: true, 57 install_dir: servicedir) 58endforeach 59 60conf = configuration_data() 61conf.set_quoted( 62 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root')) 63conf.set_quoted( 64 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root')) 65conf.set_quoted( 66 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json') 67conf.set10( 68 'UCD90160_DEVICE_ACCESS', get_option('ucd90160-access')) 69 70configure_file(output: 'config.h', configuration: conf) 71 72# Ensure the generated header here winds up in the correct path in the build 73# tree such that it actually get used and doesn't get found in the sysroot 74# somewhere. Meson doesn't allow path elements (rightfully so) when specifying 75# the output filename of a target definition so the target must be defined in 76# the directory where the artifacts need to be placed. Do that now, because 77# the generated source (cpp) is needed to define the library target. 78subdir('org/open_power/Witherspoon/Fault') 79 80libpower = static_library( 81 'power', 82 error_cpp, 83 error_hpp, 84 'gpio.cpp', 85 'pmbus.cpp', 86 'utility.cpp', 87 dependencies: [ 88 cppfs, 89 phosphor_dbus_interfaces, 90 phosphor_logging, 91 sdbusplus, 92 sdeventplus, 93 ], 94) 95 96libpower_inc = include_directories('.') 97 98# Build the tools/i2c sub-directory first. Other sub-directories depend on 99# Meson variables defined there. 100subdir('tools/i2c') 101 102subdir('phosphor-regulators') 103subdir('power-sequencer') 104subdir('power-supply') 105subdir('phosphor-power-supply') 106subdir('tools/power-utils') 107if get_option('tests').enabled() 108 subdir('test') 109endif 110subdir('cold-redundancy') 111