blob: aa6892241a5c591c5115b34a631d051561083dbd [file] [log] [blame]
SunnySrivastava19847ef54422019-12-03 02:47:37 -06001project(
2 'openpower-vpd-parser',
3 'c',
4 'cpp',
5 default_options: [
Priyanga Ramasamy9d149342020-07-16 23:41:26 +05306 'warning_level=3',
7 'werror=true',
8 'cpp_std=c++17'
SunnySrivastava19847ef54422019-12-03 02:47:37 -06009 ],
10 version: '1.0'
11)
12
13build_tests = get_option('tests')
14
15sdbusplus = dependency('sdbusplus')
16phosphor_logging = dependency('phosphor-logging')
SunnySrivastava198497f8df02020-05-30 12:05:53 -050017phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
SunnySrivastava19847ef54422019-12-03 02:47:37 -060018
19compiler = meson.get_compiler('cpp')
20python = find_program('python3', required:true)
21
SunnySrivastava19847ef54422019-12-03 02:47:37 -060022compiler.has_header('CLI/CLI.hpp')
23compiler.has_header('nlohmann/json.hpp')
Santosh Puranikb665c552020-10-29 14:23:04 +053024add_global_arguments('-Wno-psabi', language : ['c', 'cpp'])
SunnySrivastava19847ef54422019-12-03 02:47:37 -060025configure_file(output: 'config.h',
26 configuration :{
Santosh Puranik0246a4d2020-11-04 16:57:39 +053027 'INVENTORY_JSON_DEFAULT': '"'+get_option('INVENTORY_JSON_DEFAULT')+'"',
28 'VPD_FILES_PATH': '"'+get_option('VPD_FILES_PATH')+'"',
PriyangaRamasamy1f0b1e62020-02-20 20:48:25 +053029 'INVENTORY_PATH': '"'+get_option('INVENTORY_PATH')+'"',
SunnySrivastava198443306542020-04-01 02:50:20 -050030 'IPZ_INTERFACE': '"'+get_option('IPZ_INTERFACE')+'"',
31 'INVENTORY_MANAGER_SERVICE': '"'+get_option('INVENTORY_MANAGER_SERVICE')+'"',
SunnySrivastava1984a7392592020-03-09 10:19:33 -050032 'BUSNAME' : '"' + get_option('BUSNAME') + '"',
33 'OBJPATH' : '"' + get_option('OBJPATH') + '"',
34 'IFACE' : '"' + get_option('IFACE') + '"',
SunnySrivastava198443306542020-04-01 02:50:20 -050035 'OBJECT_MAPPER_SERVICE' : '"'+get_option('OBJECT_MAPPER_SERVICE')+'"',
36 'OBJECT_MAPPER_OBJECT' : '"'+get_option('OBJECT_MAPPER_OBJECT')+'"',
37 'POWER_SUPPLY_TYPE_INTERFACE' : '"'+get_option('POWER_SUPPLY_TYPE_INTERFACE')+'"',
PriyangaRamasamy83a1d5d2020-04-30 19:15:43 +053038 'INVENTORY_MANAGER_CACHE' : '"'+get_option('INVENTORY_MANAGER_CACHE')+'"',
Santosh Puranik0246a4d2020-11-04 16:57:39 +053039 'INVENTORY_JSON_SYM_LINK': '"'+get_option('INVENTORY_JSON_SYM_LINK')+'"',
40 'INVENTORY_JSON_2U': '"'+get_option('INVENTORY_JSON_2U')+'"',
41 'INVENTORY_JSON_4U': '"'+get_option('INVENTORY_JSON_4U')+'"'
SunnySrivastava19847ef54422019-12-03 02:47:37 -060042 }
PriyangaRamasamy1f0b1e62020-02-20 20:48:25 +053043 )
SunnySrivastava198443306542020-04-01 02:50:20 -050044
45if get_option('ibm-parser').enabled()
SunnySrivastava19847ef54422019-12-03 02:47:37 -060046 ibm_read_vpd_SOURCES = ['ibm_vpd_app.cpp',
SunnySrivastava1984e12b1812020-05-26 02:23:11 -050047 'vpd-parser/ipz_parser.cpp',
SunnySrivastava19847ef54422019-12-03 02:47:37 -060048 'impl.cpp',
49 'utils.cpp',
SunnySrivastava1984e12b1812020-05-26 02:23:11 -050050 'vpd-parser/keyword_vpd_parser.cpp',
SunnySrivastava19847ef54422019-12-03 02:47:37 -060051 'vpdecc/vpdecc.c',
Alpana Kumaria00936f2020-04-14 07:15:46 -050052 'vpdecc/vpdecc_support.c',
SunnySrivastava1984e12b1812020-05-26 02:23:11 -050053 'vpd-parser/memory_vpd_parser.cpp',
54 'vpd-parser/parser_factory.cpp'
SunnySrivastava19847ef54422019-12-03 02:47:37 -060055 ]
56
57 ibm_vpd_exe = executable(
58 'ibm-read-vpd',
59 ibm_read_vpd_SOURCES,
60 dependencies: [
61 sdbusplus,
62 phosphor_logging,
63 ],
SunnySrivastava1984e12b1812020-05-26 02:23:11 -050064 include_directories : 'vpd-parser/',
SunnySrivastava19847ef54422019-12-03 02:47:37 -060065 install: true,
66 cpp_args : '-DIPZ_PARSER'
67 )
PriyangaRamasamy1f0b1e62020-02-20 20:48:25 +053068
69 vpd_tool_SOURCES = ['vpd_tool.cpp',
70 'vpd_tool_impl.cpp'
71 ]
72
73 vpd_tool_exe = executable(
74 'vpd-tool',
75 vpd_tool_SOURCES,
76 dependencies: [
77 sdbusplus
78 ],
PriyangaRamasamycdf943c2020-03-18 02:25:30 +053079 install: true
PriyangaRamasamy1f0b1e62020-02-20 20:48:25 +053080 )
SunnySrivastava1984a7392592020-03-09 10:19:33 -050081if get_option('vpd-manager').enabled()
82 subdir('vpd-manager')
83endif
84
SunnySrivastava19847ef54422019-12-03 02:47:37 -060085else
86 FRUGEN = '$srcdir/extra-properties.py -e' + get_option('FRU_YAML')
87 PROPGEN = '$srcdir/extra-properties.py -e' + get_option('PROP_YAML')
88
89 src_dir = meson.source_root()
90 FRU_GEN_SCRIPT = src_dir + '/writefru.py'
91 FRU_GEN_SCRIPT_FILES = src_dir + '/writefru.yaml'
92
93 PROP_GEN_SCRIPT = src_dir + '/extra-properties.py'
94 PROP_GEN_SCRIPT_FILES = src_dir + '/extra-properties-example.yaml'
95
96 writefru_hpp = custom_target('writefru.hpp',
97 command:[python,
98 FRU_GEN_SCRIPT,
99 '-i',
100 get_option('FRU_YAML')
101 ],
102 depend_files :['writefru.mako.hpp',
103 'writefru.py',
104 get_option('FRU_YAML')
105 ],
106 output:'writefru.hpp'
107 )
108
109 extra_properties_gen_hpp = custom_target(
110 'extra-properties-gen.hpp',
111 command:[
112 python,
113 PROP_GEN_SCRIPT,
114 '-e',
115 get_option('PROP_YAML')
116 ],
117 depend_files : ['extra-properties.mako.hpp',
118 'extra-properties.py',
119 get_option('PROP_YAML')
120 ],
121 output:'extra-properties-gen.hpp'
122 )
123
124 openpower_read_vpd_SOURCES = ['app.cpp',
125 'args.cpp',
126 'impl.cpp',
SunnySrivastava1984e12b1812020-05-26 02:23:11 -0500127 'vpd-parser/ipz_parser.cpp',
SunnySrivastava19847ef54422019-12-03 02:47:37 -0600128 'write.cpp',
129 'utils.cpp',
130 writefru_hpp,
131 extra_properties_gen_hpp
132 ]
133
134 openpower_read_vpd_exe= executable(
135 'openpower-read-vpd',
136 openpower_read_vpd_SOURCES,
137 dependencies: [
138 sdbusplus,
139 phosphor_logging,
140 ],
SunnySrivastava1984e12b1812020-05-26 02:23:11 -0500141 include_directories : 'vpd-parser/',
SunnySrivastava19847ef54422019-12-03 02:47:37 -0600142 install: true,
143 )
144endif
145subdir('test')