blob: e46790be1068c582c1b93de33fd40218db576470 [file] [log] [blame]
Lei YUe065f612019-07-30 14:10:52 +08001project('phosphor-psu-code-mgmt', 'cpp',
2 version: '0.1', meson_version: '>=0.49.0',
3 default_options: [
4 'warning_level=3',
5 'werror=true',
Lei YU01539e72019-07-31 10:57:38 +08006 'cpp_std=c++17',
7 'b_lto=true',
Lei YUe065f612019-07-30 14:10:52 +08008 ])
9
10systemd = dependency('systemd')
11servicedir = systemd.get_pkgconfig_variable('systemdsystemunitdir')
Lei YU617c0b72020-02-10 16:11:47 +080012subdir('services')
Lei YUe065f612019-07-30 14:10:52 +080013
Lei YU5e0dcb32019-08-02 18:04:34 +080014# Common configurations for src and test
15cdata = configuration_data()
Lei YUad90ad52019-08-06 11:19:28 +080016cdata.set_quoted('ITEM_IFACE', 'xyz.openbmc_project.Inventory.Item')
Lei YU9edb7332019-09-19 14:46:19 +080017cdata.set_quoted('ASSET_IFACE', 'xyz.openbmc_project.Inventory.Decorator.Asset')
Lei YU5e0dcb32019-08-02 18:04:34 +080018cdata.set_quoted('VERSION_IFACE', 'xyz.openbmc_project.Software.Version')
19cdata.set_quoted('FILEPATH_IFACE', 'xyz.openbmc_project.Common.FilePath')
20cdata.set_quoted('BUSNAME_UPDATER', 'xyz.openbmc_project.Software.Psu.Updater')
21cdata.set_quoted('PSU_INVENTORY_IFACE', 'xyz.openbmc_project.Inventory.Item.PowerSupply')
22cdata.set_quoted('ACTIVATION_FWD_ASSOCIATION', 'inventory')
23cdata.set_quoted('ACTIVATION_REV_ASSOCIATION', 'activation')
24cdata.set_quoted('ACTIVE_FWD_ASSOCIATION', 'active')
25cdata.set_quoted('ACTIVE_REV_ASSOCIATION', 'software_version')
26cdata.set_quoted('FUNCTIONAL_FWD_ASSOCIATION', 'functional')
27cdata.set_quoted('FUNCTIONAL_REV_ASSOCIATION', 'software_version')
Lei YUa8b966f2020-03-18 10:32:24 +080028cdata.set_quoted('UPDATEABLE_FWD_ASSOCIATION', 'updateable')
29cdata.set_quoted('UPDATEABLE_REV_ASSOCIATION', 'software_version')
Lei YUf77189f2019-08-07 14:26:30 +080030cdata.set_quoted('VERSION', 'Version')
31cdata.set_quoted('PRESENT', 'Present')
Lei YU9edb7332019-09-19 14:46:19 +080032cdata.set_quoted('MANUFACTURER', 'Manufacturer')
33cdata.set_quoted('MODEL', 'Model')
Lei YU5e0dcb32019-08-02 18:04:34 +080034
35cdata.set_quoted('SOFTWARE_OBJPATH', get_option('SOFTWARE_OBJPATH'))
36cdata.set_quoted('MANIFEST_FILE', get_option('MANIFEST_FILE'))
37cdata.set_quoted('PSU_INVENTORY_PATH_BASE', get_option('PSU_INVENTORY_PATH_BASE'))
Lei YU5f3584d2019-08-27 16:28:53 +080038cdata.set_quoted('PSU_VERSION_UTIL', get_option('PSU_VERSION_UTIL'))
Lei YU65207482019-10-11 16:39:36 +080039cdata.set_quoted('PSU_VERSION_COMPARE_UTIL', get_option('PSU_VERSION_COMPARE_UTIL'))
Lei YU12c9f4c2019-09-11 15:08:15 +080040cdata.set_quoted('PSU_UPDATE_SERVICE', get_option('PSU_UPDATE_SERVICE'))
41cdata.set_quoted('IMG_DIR', get_option('IMG_DIR'))
Lei YU2e0e2de2019-09-26 16:42:23 +080042cdata.set_quoted('IMG_DIR_PERSIST', get_option('IMG_DIR_PERSIST'))
43cdata.set_quoted('IMG_DIR_BUILTIN', get_option('IMG_DIR_BUILTIN'))
Lei YU5e0dcb32019-08-02 18:04:34 +080044
45phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
46phosphor_logging = dependency('phosphor-logging')
47sdbusplus = dependency('sdbusplus')
Lei YUad90ad52019-08-06 11:19:28 +080048ssl = dependency('openssl')
Lei YU5e0dcb32019-08-02 18:04:34 +080049
50add_project_link_arguments(['-lstdc++fs'], language: 'cpp')
51
Lei YUe065f612019-07-30 14:10:52 +080052subdir('src')
Lei YU5e0dcb32019-08-02 18:04:34 +080053
54build_tests = get_option('tests')
Lei YU5f3584d2019-08-27 16:28:53 +080055build_examples = get_option('examples')
56
57if build_examples
58 subdir('vendor-example')
59endif
Lei YU5e0dcb32019-08-02 18:04:34 +080060
61if not build_tests.disabled()
62 subdir('test')
63endif