Lei YU | e065f61 | 2019-07-30 14:10:52 +0800 | [diff] [blame] | 1 | project('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 YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 6 | 'cpp_std=c++17', |
| 7 | 'b_lto=true', |
Lei YU | e065f61 | 2019-07-30 14:10:52 +0800 | [diff] [blame] | 8 | ]) |
| 9 | |
| 10 | systemd = dependency('systemd') |
| 11 | servicedir = systemd.get_pkgconfig_variable('systemdsystemunitdir') |
Lei YU | 617c0b7 | 2020-02-10 16:11:47 +0800 | [diff] [blame] | 12 | subdir('services') |
Lei YU | e065f61 | 2019-07-30 14:10:52 +0800 | [diff] [blame] | 13 | |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 14 | # Common configurations for src and test |
| 15 | cdata = configuration_data() |
Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 16 | cdata.set_quoted('ITEM_IFACE', 'xyz.openbmc_project.Inventory.Item') |
Lei YU | 9edb733 | 2019-09-19 14:46:19 +0800 | [diff] [blame] | 17 | cdata.set_quoted('ASSET_IFACE', 'xyz.openbmc_project.Inventory.Decorator.Asset') |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 18 | cdata.set_quoted('VERSION_IFACE', 'xyz.openbmc_project.Software.Version') |
| 19 | cdata.set_quoted('FILEPATH_IFACE', 'xyz.openbmc_project.Common.FilePath') |
| 20 | cdata.set_quoted('BUSNAME_UPDATER', 'xyz.openbmc_project.Software.Psu.Updater') |
| 21 | cdata.set_quoted('PSU_INVENTORY_IFACE', 'xyz.openbmc_project.Inventory.Item.PowerSupply') |
| 22 | cdata.set_quoted('ACTIVATION_FWD_ASSOCIATION', 'inventory') |
| 23 | cdata.set_quoted('ACTIVATION_REV_ASSOCIATION', 'activation') |
| 24 | cdata.set_quoted('ACTIVE_FWD_ASSOCIATION', 'active') |
| 25 | cdata.set_quoted('ACTIVE_REV_ASSOCIATION', 'software_version') |
| 26 | cdata.set_quoted('FUNCTIONAL_FWD_ASSOCIATION', 'functional') |
| 27 | cdata.set_quoted('FUNCTIONAL_REV_ASSOCIATION', 'software_version') |
Lei YU | a8b966f | 2020-03-18 10:32:24 +0800 | [diff] [blame] | 28 | cdata.set_quoted('UPDATEABLE_FWD_ASSOCIATION', 'updateable') |
| 29 | cdata.set_quoted('UPDATEABLE_REV_ASSOCIATION', 'software_version') |
Lei YU | f77189f | 2019-08-07 14:26:30 +0800 | [diff] [blame] | 30 | cdata.set_quoted('VERSION', 'Version') |
| 31 | cdata.set_quoted('PRESENT', 'Present') |
Lei YU | 9edb733 | 2019-09-19 14:46:19 +0800 | [diff] [blame] | 32 | cdata.set_quoted('MANUFACTURER', 'Manufacturer') |
| 33 | cdata.set_quoted('MODEL', 'Model') |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 34 | |
| 35 | cdata.set_quoted('SOFTWARE_OBJPATH', get_option('SOFTWARE_OBJPATH')) |
| 36 | cdata.set_quoted('MANIFEST_FILE', get_option('MANIFEST_FILE')) |
| 37 | 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] | 38 | cdata.set_quoted('PSU_VERSION_UTIL', get_option('PSU_VERSION_UTIL')) |
Lei YU | 6520748 | 2019-10-11 16:39:36 +0800 | [diff] [blame] | 39 | 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] | 40 | cdata.set_quoted('PSU_UPDATE_SERVICE', get_option('PSU_UPDATE_SERVICE')) |
| 41 | cdata.set_quoted('IMG_DIR', get_option('IMG_DIR')) |
Lei YU | 2e0e2de | 2019-09-26 16:42:23 +0800 | [diff] [blame] | 42 | cdata.set_quoted('IMG_DIR_PERSIST', get_option('IMG_DIR_PERSIST')) |
| 43 | cdata.set_quoted('IMG_DIR_BUILTIN', get_option('IMG_DIR_BUILTIN')) |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 44 | |
| 45 | phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') |
| 46 | phosphor_logging = dependency('phosphor-logging') |
| 47 | sdbusplus = dependency('sdbusplus') |
Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 48 | ssl = dependency('openssl') |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 49 | |
| 50 | add_project_link_arguments(['-lstdc++fs'], language: 'cpp') |
| 51 | |
Lei YU | e065f61 | 2019-07-30 14:10:52 +0800 | [diff] [blame] | 52 | subdir('src') |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 53 | |
| 54 | build_tests = get_option('tests') |
Lei YU | 5f3584d | 2019-08-27 16:28:53 +0800 | [diff] [blame] | 55 | build_examples = get_option('examples') |
| 56 | |
| 57 | if build_examples |
| 58 | subdir('vendor-example') |
| 59 | endif |
Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 60 | |
| 61 | if not build_tests.disabled() |
| 62 | subdir('test') |
| 63 | endif |