Lei YU | e065f61 | 2019-07-30 14:10:52 +0800 | [diff] [blame] | 1 | project('phosphor-psu-code-mgmt', 'cpp', |
George Liu | 6c5f681 | 2023-08-16 10:07:59 +0800 | [diff] [blame] | 2 | version: '0.1', |
| 3 | meson_version: '>=1.1.1', |
Lei YU | e065f61 | 2019-07-30 14:10:52 +0800 | [diff] [blame] | 4 | default_options: [ |
| 5 | 'warning_level=3', |
| 6 | 'werror=true', |
Patrick Williams | 8131219 | 2023-07-12 11:15:35 -0500 | [diff] [blame] | 7 | 'cpp_std=c++23', |
Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 8 | 'b_lto=true', |
George Liu | 6c5f681 | 2023-08-16 10:07:59 +0800 | [diff] [blame] | 9 | ]) |
Lei YU | e065f61 | 2019-07-30 14:10:52 +0800 | [diff] [blame] | 10 | |
| 11 | systemd = dependency('systemd') |
Patrick Williams | 200adf8 | 2023-04-12 08:01:16 -0500 | [diff] [blame] | 12 | servicedir = systemd.get_variable('systemdsystemunitdir') |
Lei YU | 617c0b7 | 2020-02-10 16:11:47 +0800 | [diff] [blame] | 13 | subdir('services') |
Lei YU | e065f61 | 2019-07-30 14:10:52 +0800 | [diff] [blame] | 14 | |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 15 | # Common configurations for src and test |
| 16 | cdata = configuration_data() |
Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 17 | cdata.set_quoted('ITEM_IFACE', 'xyz.openbmc_project.Inventory.Item') |
Lei YU | 9edb733 | 2019-09-19 14:46:19 +0800 | [diff] [blame] | 18 | cdata.set_quoted('ASSET_IFACE', 'xyz.openbmc_project.Inventory.Decorator.Asset') |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 19 | cdata.set_quoted('VERSION_IFACE', 'xyz.openbmc_project.Software.Version') |
| 20 | cdata.set_quoted('FILEPATH_IFACE', 'xyz.openbmc_project.Common.FilePath') |
| 21 | cdata.set_quoted('BUSNAME_UPDATER', 'xyz.openbmc_project.Software.Psu.Updater') |
| 22 | cdata.set_quoted('PSU_INVENTORY_IFACE', 'xyz.openbmc_project.Inventory.Item.PowerSupply') |
| 23 | cdata.set_quoted('ACTIVATION_FWD_ASSOCIATION', 'inventory') |
| 24 | cdata.set_quoted('ACTIVATION_REV_ASSOCIATION', 'activation') |
| 25 | cdata.set_quoted('ACTIVE_FWD_ASSOCIATION', 'active') |
| 26 | cdata.set_quoted('ACTIVE_REV_ASSOCIATION', 'software_version') |
| 27 | cdata.set_quoted('FUNCTIONAL_FWD_ASSOCIATION', 'functional') |
| 28 | cdata.set_quoted('FUNCTIONAL_REV_ASSOCIATION', 'software_version') |
Lei YU | a8b966f | 2020-03-18 10:32:24 +0800 | [diff] [blame] | 29 | cdata.set_quoted('UPDATEABLE_FWD_ASSOCIATION', 'updateable') |
| 30 | cdata.set_quoted('UPDATEABLE_REV_ASSOCIATION', 'software_version') |
Lei YU | f77189f | 2019-08-07 14:26:30 +0800 | [diff] [blame] | 31 | cdata.set_quoted('VERSION', 'Version') |
| 32 | cdata.set_quoted('PRESENT', 'Present') |
Lei YU | 9edb733 | 2019-09-19 14:46:19 +0800 | [diff] [blame] | 33 | cdata.set_quoted('MANUFACTURER', 'Manufacturer') |
| 34 | cdata.set_quoted('MODEL', 'Model') |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 35 | |
| 36 | cdata.set_quoted('SOFTWARE_OBJPATH', get_option('SOFTWARE_OBJPATH')) |
| 37 | cdata.set_quoted('MANIFEST_FILE', get_option('MANIFEST_FILE')) |
| 38 | cdata.set_quoted('PSU_INVENTORY_PATH_BASE', get_option('PSU_INVENTORY_PATH_BASE')) |
Lei YU | 5f3584d | 2019-08-27 16:28:53 +0800 | [diff] [blame] | 39 | cdata.set_quoted('PSU_VERSION_UTIL', get_option('PSU_VERSION_UTIL')) |
Shawn McCarney | 783406e | 2024-11-17 21:49:37 -0600 | [diff] [blame] | 40 | cdata.set_quoted('PSU_MODEL_UTIL', get_option('PSU_MODEL_UTIL')) |
Lei YU | 6520748 | 2019-10-11 16:39:36 +0800 | [diff] [blame] | 41 | cdata.set_quoted('PSU_VERSION_COMPARE_UTIL', get_option('PSU_VERSION_COMPARE_UTIL')) |
Lei YU | 12c9f4c | 2019-09-11 15:08:15 +0800 | [diff] [blame] | 42 | cdata.set_quoted('PSU_UPDATE_SERVICE', get_option('PSU_UPDATE_SERVICE')) |
| 43 | cdata.set_quoted('IMG_DIR', get_option('IMG_DIR')) |
Lei YU | 2e0e2de | 2019-09-26 16:42:23 +0800 | [diff] [blame] | 44 | cdata.set_quoted('IMG_DIR_PERSIST', get_option('IMG_DIR_PERSIST')) |
| 45 | cdata.set_quoted('IMG_DIR_BUILTIN', get_option('IMG_DIR_BUILTIN')) |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 46 | |
Faisal Awada | fb86e79 | 2024-09-11 10:51:17 -0500 | [diff] [blame] | 47 | cdata.set10('ALWAYS_USE_BUILTIN_IMG_DIR', get_option('ALWAYS_USE_BUILTIN_IMG_DIR')) |
| 48 | |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 49 | phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') |
| 50 | phosphor_logging = dependency('phosphor-logging') |
| 51 | sdbusplus = dependency('sdbusplus') |
Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 52 | ssl = dependency('openssl') |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 53 | |
Lei YU | e065f61 | 2019-07-30 14:10:52 +0800 | [diff] [blame] | 54 | subdir('src') |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 55 | |
| 56 | build_tests = get_option('tests') |
Lei YU | 5f3584d | 2019-08-27 16:28:53 +0800 | [diff] [blame] | 57 | build_examples = get_option('examples') |
| 58 | |
| 59 | if build_examples |
| 60 | subdir('vendor-example') |
| 61 | endif |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 62 | |
| 63 | if not build_tests.disabled() |
| 64 | subdir('test') |
| 65 | endif |