Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 1 | project( |
| 2 | 'entity-manager', |
| 3 | 'cpp', |
| 4 | default_options: [ |
| 5 | 'warning_level=3', |
| 6 | 'werror=true', |
Patrick Williams | a183f4a | 2023-08-23 06:31:19 -0500 | [diff] [blame] | 7 | 'cpp_std=c++23' |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 8 | ], |
| 9 | license: 'Apache-2.0', |
| 10 | version: '0.1', |
Patrick Williams | a183f4a | 2023-08-23 06:31:19 -0500 | [diff] [blame] | 11 | meson_version: '>=1.1.1', |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 12 | ) |
Brad Bishop | ec98491 | 2020-10-01 10:24:55 -0400 | [diff] [blame] | 13 | add_project_arguments('-Wno-psabi', language: 'cpp') |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 14 | |
| 15 | boost_args = [ |
| 16 | '-DBOOST_SYSTEM_NO_DEPRECATED', |
| 17 | '-DBOOST_ERROR_CODE_HEADER_ONLY', |
| 18 | '-DBOOST_NO_RTTI', |
| 19 | '-DBOOST_NO_TYPEID', |
| 20 | '-DBOOST_ALL_NO_LIB', |
Ed Tanous | 07d467b | 2021-02-23 14:48:37 -0800 | [diff] [blame] | 21 | '-DBOOST_ALLOW_DEPRECATED_HEADERS' |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 22 | ] |
| 23 | build_tests = get_option('tests') |
Brad Bishop | e3a12b6 | 2020-01-15 11:56:29 -0500 | [diff] [blame] | 24 | cpp = meson.get_compiler('cpp') |
Brad Bishop | 787e828 | 2020-01-15 12:16:53 -0500 | [diff] [blame] | 25 | boost = dependency('boost', required: false) |
| 26 | if not boost.found() |
| 27 | subproject('boost', required: false) |
| 28 | boost = declare_dependency( |
| 29 | include_directories: 'subprojects/boost_1_71_0', |
| 30 | ) |
Ed Tanous | 07d467b | 2021-02-23 14:48:37 -0800 | [diff] [blame] | 31 | boost = boost.as_system('system') |
Brad Bishop | 787e828 | 2020-01-15 12:16:53 -0500 | [diff] [blame] | 32 | endif |
Brad Bishop | 92daaaa | 2020-01-20 15:45:01 -0500 | [diff] [blame] | 33 | if get_option('fru-device') |
| 34 | i2c = cpp.find_library('i2c') |
| 35 | endif |
Andrew Jeffery | 14a7bc9 | 2021-08-02 10:01:22 +0930 | [diff] [blame] | 36 | |
Chris Sides | 2ab7341 | 2024-10-15 16:04:11 -0500 | [diff] [blame] | 37 | if get_option('devicetree-vpd') |
| 38 | phosphor_dbus_interfaces_dep = dependency('phosphor-dbus-interfaces', include_type: 'system') |
| 39 | endif |
| 40 | |
Patrick Williams | 7e11982 | 2023-12-07 11:38:19 -0600 | [diff] [blame] | 41 | nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system') |
Alexander Hansen | c3db2c3 | 2024-08-20 15:01:38 +0200 | [diff] [blame] | 42 | sdbusplus = dependency('sdbusplus', include_type: 'system') |
| 43 | phosphor_logging_dep = dependency('phosphor-logging') |
Andrew Jeffery | 14a7bc9 | 2021-08-02 10:01:22 +0930 | [diff] [blame] | 44 | |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 45 | systemd = dependency('systemd') |
Patrick Williams | ee1db76 | 2023-04-12 08:05:58 -0500 | [diff] [blame] | 46 | systemd_system_unit_dir = systemd.get_variable( |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 47 | 'systemdsystemunitdir', |
Patrick Williams | ee1db76 | 2023-04-12 08:05:58 -0500 | [diff] [blame] | 48 | pkgconfig_define: ['prefix', get_option('prefix')]) |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 49 | packagedir = join_paths( |
| 50 | get_option('prefix'), |
| 51 | get_option('datadir'), |
| 52 | meson.project_name(), |
| 53 | ) |
Andrew Jeffery | a9c5892 | 2021-06-01 09:28:59 +0930 | [diff] [blame] | 54 | sysconfdir = join_paths( |
| 55 | get_option('prefix'), |
| 56 | get_option('sysconfdir'), |
| 57 | meson.project_name(), |
| 58 | ) |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 59 | threads = dependency('threads') |
Ed Tanous | 55ae5a8 | 2021-08-02 14:00:02 -0700 | [diff] [blame] | 60 | if cpp.has_header('valijson/validator.hpp') |
| 61 | valijson = declare_dependency() |
| 62 | else |
| 63 | subproject('valijson', required: false) |
| 64 | valijson = declare_dependency( |
| 65 | include_directories: 'subprojects/valijson/include' |
| 66 | ) |
| 67 | valijson = valijson.as_system('system') |
Brad Bishop | ff1ddb7 | 2020-01-15 12:24:56 -0500 | [diff] [blame] | 68 | endif |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 69 | |
| 70 | install_data('blacklist.json') |
| 71 | |
| 72 | configs = [ |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 73 | '1ux16_riser.json', |
| 74 | '2ux8_riser.json', |
Ali El-Haj-Mahmoud | ffe7df4 | 2023-05-08 14:27:22 -0400 | [diff] [blame] | 75 | '3ypower_vast2112_psu.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 76 | '8x25_hsbp.json', |
| 77 | 'a2ul16riser.json', |
| 78 | 'a2ux8x4riser.json', |
Alexander Hansen | 719432e | 2023-08-01 17:28:59 +0200 | [diff] [blame] | 79 | 'acbel_r1ca2122a_psu.json', |
Patrick Williams | 87c3fce | 2024-09-04 16:56:54 -0400 | [diff] [blame] | 80 | 'acbell_rica_psu.json', |
| 81 | 'ahw1um2riser.json', |
| 82 | 'aspower_u1a-d10550_psu.json', |
| 83 | 'aspower_u1a-d10800_psu.json', |
| 84 | 'aspower_u1a-d11200_psu.json', |
| 85 | 'aspower_u1a-d11600_psu.json', |
| 86 | 'aspower_u1d-d10800_psu.json', |
Zev Weiss | 3419592 | 2024-02-20 08:06:33 +0000 | [diff] [blame] | 87 | 'asrock_c3_medium_x86.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 88 | 'asrock_e3c246d4i.json', |
Zev Weiss | 0af3542 | 2023-11-07 03:24:33 +0000 | [diff] [blame] | 89 | 'asrock_e3c256d4i.json', |
Zev Weiss | fcd6011 | 2023-11-07 08:10:41 +0000 | [diff] [blame] | 90 | 'asrock_m3_small_x86.json', |
Zev Weiss | 86930a1 | 2023-11-07 08:10:41 +0000 | [diff] [blame] | 91 | 'asrock_n3_xlarge_x86.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 92 | 'asrock_romed8hm3.json', |
Zev Weiss | 544d6ec | 2023-11-07 03:24:33 +0000 | [diff] [blame] | 93 | 'asrock_spc621d8hm3.json', |
Patrick Williams | 87c3fce | 2024-09-04 16:56:54 -0400 | [diff] [blame] | 94 | 'axx1p100hssi_aic.json', |
| 95 | 'axx2prthdhd.json', |
| 96 | 'bellavista.json', |
Matt Spinler | 513976b | 2024-05-13 11:24:03 -0500 | [diff] [blame] | 97 | 'blueridge_1s4u_chassis.json', |
| 98 | 'blueridge_2u_chassis.json', |
| 99 | 'blueridge_4u_chassis.json', |
Patrick Williams | 87c3fce | 2024-09-04 16:56:54 -0400 | [diff] [blame] | 100 | 'blyth.json', |
Patrick Williams | 87c3fce | 2024-09-04 16:56:54 -0400 | [diff] [blame] | 101 | 'bnp_baseboard.json', |
Adriana Kobylak | 0b5b122 | 2023-01-31 14:15:27 -0600 | [diff] [blame] | 102 | 'bonnell.json', |
Potin Lai | 6a50465 | 2024-04-23 15:34:51 +0800 | [diff] [blame] | 103 | 'brcm_100g_1p_ocp_mezz.json', |
Daniel Hsu | 0249bbd | 2024-03-22 16:22:26 +0800 | [diff] [blame] | 104 | 'brcm_200g_1p_ocp_mezz.json', |
Potin Lai | ae326c7 | 2024-02-15 15:08:31 +0800 | [diff] [blame] | 105 | 'cx7_ocp.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 106 | 'delta_awf2dc3200w_psu.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 107 | 'delta_dps-1600ab_psu.json', |
| 108 | 'delta_dps-2000ab_psu.json', |
Patrick Williams | 87c3fce | 2024-09-04 16:56:54 -0400 | [diff] [blame] | 109 | 'delta_dps-750xb_psu.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 110 | 'everest.json', |
| 111 | 'f1u12x25_hsbp.json', |
| 112 | 'f1u4x25_hsbp.json', |
| 113 | 'f2u12x35_hsbp.json', |
| 114 | 'f2u8x25_hsbp.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 115 | 'flextronics_s-1100adu00-201_psu.json', |
George Liu | e65c37f | 2024-02-18 11:33:39 +0800 | [diff] [blame] | 116 | 'fp5280g3_chassis.json', |
George Liu | ecaec95 | 2024-02-02 13:46:10 +0800 | [diff] [blame] | 117 | 'fp5280g3_fanboard.json', |
Matt Spinler | 6ef5f71 | 2024-05-13 11:19:40 -0500 | [diff] [blame] | 118 | 'fuji.json', |
Naresh Solanki | e3b6582 | 2022-11-02 10:29:38 +0100 | [diff] [blame] | 119 | 'genesis3_baseboard.json', |
| 120 | 'genesis3_chassis.json', |
Patrick Williams | 87c3fce | 2024-09-04 16:56:54 -0400 | [diff] [blame] | 121 | 'genesis3_psu.json', |
Alexander Hansen | f60262d | 2023-07-26 13:28:15 +0200 | [diff] [blame] | 122 | 'gospower_g1136-1300wna_psu.json', |
Andrew Geissler | 3a1cbe2 | 2023-02-17 13:57:15 -0600 | [diff] [blame] | 123 | 'ibm_tacoma_rack_controller.json', |
Matt Spinler | 6028d13 | 2024-01-17 11:25:17 -0600 | [diff] [blame] | 124 | 'ingraham.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 125 | 'intel_front_panel.json', |
| 126 | 'kudo_bmc.json', |
| 127 | 'kudo_motherboard.json', |
Patrick Williams | 1642b65 | 2024-09-05 22:29:08 -0400 | [diff] [blame] | 128 | 'meta/bletchley_baseboard.json', |
| 129 | 'meta/bletchley_chassis.json', |
| 130 | 'meta/bletchley_frontpanel.json', |
| 131 | 'meta/bmc_storage_module.json', |
| 132 | 'meta/catalina_fio.json', |
| 133 | 'meta/catalina_hdd.json', |
| 134 | 'meta/catalina_hdd_nvme.json', |
| 135 | 'meta/catalina_osfp.json', |
| 136 | 'meta/catalina_pdb.json', |
| 137 | 'meta/catalina_scm.json', |
| 138 | 'meta/fbtp.json', |
| 139 | 'meta/fbyv2.json', |
| 140 | 'meta/fbyv35.json', |
| 141 | 'meta/fbyv35_nic_mellanox.json', |
| 142 | 'meta/greatlakes.json', |
| 143 | 'meta/greatlakes_nic_mellanox.json', |
| 144 | 'meta/harma_bsm.json', |
| 145 | 'meta/harma_fanboard.json', |
| 146 | 'meta/harma_mb.json', |
| 147 | 'meta/harma_mb_vr_infineon.json', |
| 148 | 'meta/harma_scm.json', |
| 149 | 'meta/minerva_cmm.json', |
| 150 | 'meta/minerva_cmm_bsm.json', |
| 151 | 'meta/minerva_cmm_hsc_infineon.json', |
| 152 | 'meta/minerva_cmm_scm.json', |
| 153 | 'meta/minerva_fanboard.json', |
| 154 | 'meta/minerva_pdb.json', |
| 155 | 'meta/minerva_pdb_hsc_xdp.json', |
| 156 | 'meta/minerva_pttv.json', |
| 157 | 'meta/minerva_sitv.json', |
| 158 | 'meta/terminus_2x100g_nic_tsff.json', |
| 159 | 'meta/twinlake.json', |
| 160 | 'meta/ventura_fanboard.json', |
| 161 | 'meta/ventura_ioboard.json', |
| 162 | 'meta/ventura_ledboard.json', |
| 163 | 'meta/ventura_rmc.json', |
| 164 | 'meta/ventura_scm.json', |
| 165 | 'meta/yosemite4.json', |
| 166 | 'meta/yosemite4_chassis.json', |
| 167 | 'meta/yosemite4_cpu.json', |
| 168 | 'meta/yosemite4_fanboard_fsc_max_adc_ti_led_nxp_efuse_max.json', |
| 169 | 'meta/yosemite4_fanboard_fsc_max_adc_ti_led_nxp_efuse_mps.json', |
| 170 | 'meta/yosemite4_fanboard_fsc_nct_adc_max_led_ons_efuse_max.json', |
| 171 | 'meta/yosemite4_fanboard_fsc_nct_adc_max_led_ons_efuse_mps.json', |
| 172 | 'meta/yosemite4_floatingfalls.json', |
| 173 | 'meta/yosemite4_medusaboard_adc_rns_12vhsc_adi_48vhsc_inf.json', |
| 174 | 'meta/yosemite4_medusaboard_adc_rns_12vhsc_mps_48vhsc_adi.json', |
| 175 | 'meta/yosemite4_medusaboard_adc_rns_12vhsc_mps_48vhsc_inf.json', |
| 176 | 'meta/yosemite4_medusaboard_adc_rns_hsc_adi.json', |
| 177 | 'meta/yosemite4_medusaboard_adc_rns_isl_12vhsc_adi_48vhsc_inf.json', |
Leo Yang | 2e98156 | 2024-12-03 11:10:44 +0800 | [diff] [blame^] | 178 | 'meta/yosemite4_medusaboard_adc_rns_isl_12vhsc_mps_48vhsc_adi.json', |
| 179 | 'meta/yosemite4_medusaboard_adc_rns_isl_12vhsc_mps_48vhsc_inf.json', |
| 180 | 'meta/yosemite4_medusaboard_adc_rns_isl_hsc_adi.json', |
Patrick Williams | 1642b65 | 2024-09-05 22:29:08 -0400 | [diff] [blame] | 181 | 'meta/yosemite4_medusaboard_adc_ti_12vhsc_adi_48vhsc_inf.json', |
| 182 | 'meta/yosemite4_medusaboard_adc_ti_12vhsc_mps_48vhsc_adi.json', |
| 183 | 'meta/yosemite4_medusaboard_adc_ti_12vhsc_mps_48vhsc_inf.json', |
| 184 | 'meta/yosemite4_medusaboard_adc_ti_hsc_adi.json', |
| 185 | 'meta/yosemite4_sentineldome_chassis.json', |
| 186 | 'meta/yosemite4_sentineldome_t1.json', |
| 187 | 'meta/yosemite4_sentineldome_t1_retimer.json', |
| 188 | 'meta/yosemite4_sentineldome_t2.json', |
| 189 | 'meta/yosemite4_sentineldome_t2_retimer.json', |
| 190 | 'meta/yosemite4_spiderboard_adc_max_pwr_ti.json', |
| 191 | 'meta/yosemite4_spiderboard_adc_ti_pwr_ti.json', |
| 192 | 'meta/yosemite4_wailuafalls.json', |
| 193 | 'meta/yosemite4n.json', |
Andrew Jeffery | 8f163c0 | 2023-09-19 16:11:01 +0930 | [diff] [blame] | 194 | 'micron_7450.json', |
Jonico Eustaquio | aa9bb3d | 2023-04-18 15:24:24 -0500 | [diff] [blame] | 195 | 'mori_bmc.json', |
Jonico Eustaquio | 8809d71 | 2023-05-03 11:49:00 -0500 | [diff] [blame] | 196 | 'mori_motherboard.json', |
Thang Q. Nguyen | 7986595 | 2023-06-28 09:32:32 +0700 | [diff] [blame] | 197 | 'mtjade.json', |
Hieu Huynh | 35a0991 | 2024-10-23 07:32:03 +0000 | [diff] [blame] | 198 | 'mtjefferson_bmc.json', |
Hieu Huynh | f3302c2 | 2024-11-05 07:36:05 +0000 | [diff] [blame] | 199 | 'mtjefferson_bp.json', |
Hieu Huynh | 35a0991 | 2024-10-23 07:32:03 +0000 | [diff] [blame] | 200 | 'mtjefferson_mb.json', |
Chau Ly | d2928bd | 2024-10-24 08:01:21 +0000 | [diff] [blame] | 201 | 'mtmitchell_bmc.json', |
| 202 | 'mtmitchell_bp.json', |
| 203 | 'mtmitchell_mb.json', |
| 204 | 'mtmitchell_riser.json', |
Andrew Geissler | 4139c3a | 2023-10-12 04:34:33 -0600 | [diff] [blame] | 205 | 'mudflap.json', |
Tao Lin | eb588b1 | 2024-06-06 15:42:05 +0800 | [diff] [blame] | 206 | 'nf5280m7_baseboard.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 207 | 'nisqually.json', |
Tim Lee | 6173513 | 2024-04-29 09:59:38 +0800 | [diff] [blame] | 208 | 'nuvoton_npcm8xx_evb.json', |
Potin Lai | a74d543 | 2024-08-19 20:52:36 +0800 | [diff] [blame] | 209 | 'nvidia_gb200.json', |
Patrick Williams | 9effc36 | 2024-11-09 06:18:18 -0500 | [diff] [blame] | 210 | 'nvidia_gb200_io_board.json', |
Potin Lai | 7eaeb8b | 2024-08-19 20:49:55 +0800 | [diff] [blame] | 211 | 'nvidia_hmc.json', |
Patrick Rudolph | e89005d | 2024-02-06 16:06:06 +0100 | [diff] [blame] | 212 | 'nvme_intel_p_series.json', |
Patrick Rudolph | 72e53ab | 2023-11-20 08:55:55 +0100 | [diff] [blame] | 213 | 'nvme_p4500_p5500.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 214 | 'pcie_ssd_retimer.json', |
Adriana Kobylak | 0b5b122 | 2023-01-31 14:15:27 -0600 | [diff] [blame] | 215 | 'pennybacker.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 216 | 'pssf132202a.json', |
| 217 | 'pssf162205a.json', |
| 218 | 'pssf212201a.json', |
| 219 | 'pssf222201a.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 220 | 'r1000_chassis.json', |
| 221 | 'r2000_chassis.json', |
Patrick Williams | 87c3fce | 2024-09-04 16:56:54 -0400 | [diff] [blame] | 222 | 'rainier_1s4u_chassis.json', |
| 223 | 'rainier_2u_chassis.json', |
| 224 | 'rainier_4u_chassis.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 225 | 'sas_module.json', |
Naresh Solanki | 6fa508c | 2023-07-31 11:36:15 +0200 | [diff] [blame] | 226 | 'sbp1_baseboard.json', |
| 227 | 'sbp1_chassis.json', |
Patrick Williams | 87c3fce | 2024-09-04 16:56:54 -0400 | [diff] [blame] | 228 | 'sbp1_hbm.json', |
Patrick Rudolph | e2d550f | 2023-09-11 15:32:38 +0200 | [diff] [blame] | 229 | 'sbp1_nvme.json', |
Naresh Solanki | 6fa508c | 2023-07-31 11:36:15 +0200 | [diff] [blame] | 230 | 'sbp1_psu.json', |
Patrick Rudolph | 2e61474 | 2023-11-10 15:11:51 +0100 | [diff] [blame] | 231 | 'sbp1_rssd.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 232 | 'solum_pssf162202_psu.json', |
| 233 | 'storm_king.json', |
| 234 | 'stp_baseboard.json', |
| 235 | 'stp_p4000_chassis.json', |
Patrick Williams | 87c3fce | 2024-09-04 16:56:54 -0400 | [diff] [blame] | 236 | 'supermicro-pws-920p-sq_psu.json', |
| 237 | 'system1_baseboard.json', |
| 238 | 'system1_chassis.json', |
Matt Spinler | 43b6b19 | 2024-01-17 11:26:10 -0600 | [diff] [blame] | 239 | 'tola.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 240 | 'tyan_s7106_baseboard.json', |
| 241 | 'tyan_s8036_baseboard.json', |
Andrei Kartashev | 9d45552 | 2022-01-11 13:27:29 +0300 | [diff] [blame] | 242 | 'vegman_n110_baseboard.json', |
| 243 | 'vegman_rx20_baseboard.json', |
| 244 | 'vegman_sx20_baseboard.json', |
Brad Bishop | f4b2e5a | 2022-05-26 16:17:12 -0400 | [diff] [blame] | 245 | 'wft_baseboard.json', |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 246 | ] |
Ed Tanous | 9dc2cc5 | 2021-12-20 16:05:49 -0800 | [diff] [blame] | 247 | filepaths = [] |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 248 | foreach c : configs |
Ed Tanous | 9dc2cc5 | 2021-12-20 16:05:49 -0800 | [diff] [blame] | 249 | file = join_paths('configurations', c) |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 250 | install_data( |
Ed Tanous | 9dc2cc5 | 2021-12-20 16:05:49 -0800 | [diff] [blame] | 251 | file, |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 252 | install_dir: join_paths( |
| 253 | packagedir, |
| 254 | 'configurations', |
| 255 | ) |
| 256 | ) |
Ed Tanous | 9dc2cc5 | 2021-12-20 16:05:49 -0800 | [diff] [blame] | 257 | filepaths += [file] |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 258 | endforeach |
| 259 | |
Matt Spinler | 7742c87 | 2024-05-02 14:13:21 -0500 | [diff] [blame] | 260 | if get_option('validate-json') |
| 261 | validate_script = files('scripts/validate_configs.py') |
| 262 | autojson = custom_target( |
| 263 | 'check_syntax', |
| 264 | command: [ |
| 265 | validate_script, |
| 266 | '-v', |
| 267 | '-k', |
| 268 | ], |
| 269 | depend_files: files(filepaths), |
| 270 | build_by_default: true, |
| 271 | capture: true, |
| 272 | output: 'validate_configs.log', |
| 273 | ) |
| 274 | endif |
Ed Tanous | 9dc2cc5 | 2021-12-20 16:05:49 -0800 | [diff] [blame] | 275 | |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 276 | schemas = [ |
| 277 | 'global.json', |
Brad Bishop | 6666588 | 2020-05-07 17:05:18 -0400 | [diff] [blame] | 278 | 'legacy.json', |
Brad Bishop | b980991 | 2020-05-07 17:15:31 -0400 | [diff] [blame] | 279 | 'openbmc-dbus.json', |
Brad Bishop | 7d05ee5 | 2022-05-26 16:27:48 -0400 | [diff] [blame] | 280 | 'ibm.json', |
| 281 | 'intel.json', |
| 282 | 'pid.json', |
| 283 | 'pid_zone.json', |
| 284 | 'stepwise.json', |
| 285 | 'virtual_sensor.json', |
Andrew Geissler | 48edf9a | 2023-02-21 10:44:14 -0600 | [diff] [blame] | 286 | 'satellite_controller.json', |
Brad Bishop | b445991 | 2019-11-05 19:39:11 -0500 | [diff] [blame] | 287 | ] |
| 288 | |
| 289 | foreach s : schemas |
| 290 | install_data( |
| 291 | join_paths('schemas', s), |
| 292 | install_dir: join_paths( |
| 293 | packagedir, |
| 294 | 'configurations', |
| 295 | 'schemas', |
| 296 | ) |
| 297 | ) |
| 298 | endforeach |
| 299 | |
| 300 | subdir('service_files') |
| 301 | subdir('src') |
Brad Bishop | b9f50cd | 2020-10-14 09:54:58 -0400 | [diff] [blame] | 302 | |
Jason M. Bills | ff58eba | 2020-04-14 16:05:30 -0700 | [diff] [blame] | 303 | if not build_tests.disabled() |
Patrick Venture | a62466c | 2021-02-08 14:55:18 -0800 | [diff] [blame] | 304 | test_boost_args = boost_args + ['-DBOOST_ASIO_DISABLE_THREADS'] |
Brad Bishop | b9f50cd | 2020-10-14 09:54:58 -0400 | [diff] [blame] | 305 | gtest = dependency('gtest', main: true, disabler: true, required: false) |
Benjamin Fair | f2f5b7a | 2022-09-09 19:45:02 +0000 | [diff] [blame] | 306 | gmock = dependency('gmock', disabler: true, required: false) |
| 307 | if not (gtest.found() and gmock.found()) and build_tests.enabled() |
Ed Tanous | 55ae5a8 | 2021-08-02 14:00:02 -0700 | [diff] [blame] | 308 | cmake = import('cmake') |
Brad Bishop | b9f50cd | 2020-10-14 09:54:58 -0400 | [diff] [blame] | 309 | gtest_subproject = cmake.subproject('gtest') |
| 310 | cm_gtest = gtest_subproject.dependency('gtest') |
| 311 | cm_gtest_main = gtest_subproject.dependency('gtest_main') |
| 312 | gtest = declare_dependency(dependencies: [cm_gtest, cm_gtest_main, threads]) |
Benjamin Fair | f2f5b7a | 2022-09-09 19:45:02 +0000 | [diff] [blame] | 313 | gmock = gtest_subproject.dependency('gmock') |
| 314 | |
Brad Bishop | b9f50cd | 2020-10-14 09:54:58 -0400 | [diff] [blame] | 315 | endif |
| 316 | |
| 317 | test( |
| 318 | 'test_entity_manager', |
| 319 | executable( |
| 320 | 'test_entity_manager', |
| 321 | 'test/test_entity-manager.cpp', |
Brad Bishop | e45d8c7 | 2022-05-25 15:12:53 -0400 | [diff] [blame] | 322 | 'src/expression.cpp', |
| 323 | 'src/utils.cpp', |
Patrick Venture | a62466c | 2021-02-08 14:55:18 -0800 | [diff] [blame] | 324 | cpp_args: test_boost_args, |
Brad Bishop | b9f50cd | 2020-10-14 09:54:58 -0400 | [diff] [blame] | 325 | dependencies: [ |
| 326 | boost, |
| 327 | gtest, |
Andrew Jeffery | 14a7bc9 | 2021-08-02 10:01:22 +0930 | [diff] [blame] | 328 | nlohmann_json_dep, |
Alexander Hansen | c3db2c3 | 2024-08-20 15:01:38 +0200 | [diff] [blame] | 329 | phosphor_logging_dep, |
Brad Bishop | b9f50cd | 2020-10-14 09:54:58 -0400 | [diff] [blame] | 330 | sdbusplus, |
| 331 | valijson, |
| 332 | ], |
Andrew Jeffery | a5d25dc | 2023-01-27 12:28:22 +1030 | [diff] [blame] | 333 | include_directories: 'src', |
Brad Bishop | b9f50cd | 2020-10-14 09:54:58 -0400 | [diff] [blame] | 334 | ) |
| 335 | ) |
Patrick Venture | a62466c | 2021-02-08 14:55:18 -0800 | [diff] [blame] | 336 | |
| 337 | test( |
| 338 | 'test_fru_utils', |
| 339 | executable( |
| 340 | 'test_fru_utils', |
| 341 | 'test/test_fru-utils.cpp', |
Brad Bishop | e45d8c7 | 2022-05-25 15:12:53 -0400 | [diff] [blame] | 342 | 'src/fru_utils.cpp', |
Zev Weiss | 309c0b1 | 2022-02-25 01:44:12 +0000 | [diff] [blame] | 343 | 'src/fru_reader.cpp', |
Patrick Venture | a62466c | 2021-02-08 14:55:18 -0800 | [diff] [blame] | 344 | cpp_args: test_boost_args, |
| 345 | dependencies: [ |
| 346 | boost, |
| 347 | gtest, |
Alexander Hansen | c3db2c3 | 2024-08-20 15:01:38 +0200 | [diff] [blame] | 348 | phosphor_logging_dep, |
Andrew Jeffery | 5bda182 | 2023-01-27 13:40:21 +1030 | [diff] [blame] | 349 | sdbusplus, |
Patrick Venture | a62466c | 2021-02-08 14:55:18 -0800 | [diff] [blame] | 350 | ], |
Andrew Jeffery | a5d25dc | 2023-01-27 12:28:22 +1030 | [diff] [blame] | 351 | include_directories: 'src', |
Patrick Venture | a62466c | 2021-02-08 14:55:18 -0800 | [diff] [blame] | 352 | ) |
| 353 | ) |
Benjamin Fair | f2f5b7a | 2022-09-09 19:45:02 +0000 | [diff] [blame] | 354 | |
| 355 | test( |
| 356 | 'test_topology', |
| 357 | executable( |
| 358 | 'test_topology', |
| 359 | 'test/test_topology.cpp', |
| 360 | 'src/topology.cpp', |
| 361 | cpp_args: test_boost_args, |
| 362 | dependencies: [ |
| 363 | gtest, |
| 364 | gmock, |
Patrick Williams | af29361 | 2023-04-19 10:27:37 -0500 | [diff] [blame] | 365 | nlohmann_json_dep, |
Alexander Hansen | c3db2c3 | 2024-08-20 15:01:38 +0200 | [diff] [blame] | 366 | phosphor_logging_dep, |
Benjamin Fair | f2f5b7a | 2022-09-09 19:45:02 +0000 | [diff] [blame] | 367 | ], |
Andrew Jeffery | a5d25dc | 2023-01-27 12:28:22 +1030 | [diff] [blame] | 368 | include_directories: 'src', |
Benjamin Fair | f2f5b7a | 2022-09-09 19:45:02 +0000 | [diff] [blame] | 369 | ) |
| 370 | ) |
Jason M. Bills | ff58eba | 2020-04-14 16:05:30 -0700 | [diff] [blame] | 371 | endif |