blob: 865e9f02bce4391aa8efd4a2e71958e8ece8c722 [file] [log] [blame]
George Liu44073352020-03-12 14:00:13 +08001libpldm_headers = ['.', './oem/ibm']
2
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05003sources = [
4 'pldm_cmd_helper.cpp',
5 'pldm_base_cmd.cpp',
George Liud6649362019-11-27 19:06:51 +08006 'pldm_platform_cmd.cpp',
Sridevi Ramesh98576432019-11-27 10:10:28 -06007 'pldm_bios_cmd.cpp',
Sridevi Rameshd4489752019-12-08 09:03:29 -06008 'pldm_fru_cmd.cpp',
George Liu44073352020-03-12 14:00:13 +08009 'pldmtool.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050010]
11
Zahed Hossainf0d17222020-04-03 05:24:58 -050012if get_option('oem-ibm').enabled()
13sources += [
Pavithra Barithayac4e80cc2020-05-26 07:00:26 -050014 'oem/ibm/pldm_oem_ibm.cpp',
Zahed Hossainf0d17222020-04-03 05:24:58 -050015 ]
16endif
17
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050018executable(
19 'pldmtool',
20 sources,
21 implicit_include_directories: false,
George Liu44073352020-03-12 14:00:13 +080022 include_directories: include_directories(libpldm_headers),
Patrick Williams3b1dc012021-04-16 21:51:47 -050023 dependencies: [
24 CLI11_dep,
25 libpldm_dep,
26 libpldmutils,
27 nlohmann_json,
28 phosphor_dbus_interfaces,
29 sdbusplus,
30 ],
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050031 install: true,
32 install_dir: get_option('bindir'))