blob: d51d9b872bb5cc6affceb30bc32bd29727bb4e74 [file] [log] [blame]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +05301project('bmcweb', 'cpp',
2 version : '1.0',
Patrick Williamsc52ee722021-10-06 15:17:42 -05003 meson_version: '>=0.57.0',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +05304 default_options: [
Manojkiran Edacb2ed192021-02-15 08:30:43 +05305 'b_lto_mode=default',
Ed Tanousf523c322021-12-03 10:46:48 -08006 'b_lto_threads=0',
7 'b_lto=true',
8 'b_ndebug=if-release',
9 'buildtype=debugoptimized',
10 'cpp_rtti=false',
11 'cpp_std=c++20',
12 'warning_level=3',
13 'werror=true',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053014 ])
15
16# Project related links
17
18project_pretty_name = 'bmcweb'
19project_url = 'https://github.com/openbmc/' + project_pretty_name
20project_issues_url = project_url + '/issues/new'
21summary('Issues',project_issues_url, section: 'Report Issues')
22
23# Validate the c++ Standard
24
Patrick Williamsc52ee722021-10-06 15:17:42 -050025if get_option('cpp_std') != 'c++20'
26 error('This project requires c++20 support')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053027endif
28
29# Get compiler and default build type
30
31cxx = meson.get_compiler('cpp')
32build = get_option('buildtype')
33optimization = get_option('optimization')
34summary('Build Type',build, section : 'Build Info')
35summary('Optimization',optimization, section : 'Build Info')
36
Ed Tanous5e34b672021-02-05 14:21:27 -080037
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053038# remove debug information for minsize buildtype
39if(get_option('buildtype') == 'minsize')
Ed Tanous5e34b672021-02-05 14:21:27 -080040 add_project_arguments(['-fdata-sections', '-ffunction-sections'], language : 'cpp')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053041 add_project_arguments('-DNDEBUG', language : 'cpp')
42endif
43
44# Disable lto when compiling with no optimization
45if(get_option('optimization') == '0')
46 add_project_arguments('-fno-lto', language: 'cpp')
47 message('Disabling lto & its supported features as optimization is disabled')
48endif
49
50# Include Directories
51
Ed Tanouscf2f9322021-09-22 15:34:41 -070052incdir = include_directories(
53 'include',
54 'redfish-core/include',
55 'redfish-core/lib',
56 'http'
57)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053058
59# Get the options and enable the respective features
60## create a MAP of "options : feature_flag"
61
62feature_map = {
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053063 'basic-auth' : '-DBMCWEB_ENABLE_BASIC_AUTHENTICATION',
64 'cookie-auth' : '-DBMCWEB_ENABLE_COOKIE_AUTHENTICATION',
65 'google-api' : '-DBMCWEB_ENABLE_GOOGLE_API',
66 'host-serial-socket' : '-DBMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET',
67 'ibm-management-console' : '-DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE',
68 'insecure-disable-auth' : '-DBMCWEB_INSECURE_DISABLE_AUTHENTICATION',
69 'insecure-disable-csrf' : '-DBMCWEB_INSECURE_DISABLE_CSRF_PREVENTION',
70 'insecure-disable-ssl' : '-DBMCWEB_INSECURE_DISABLE_SSL',
71 'insecure-push-style-notification' : '-DBMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING',
72 'insecure-tftp-update' : '-DBMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE',
73 'kvm' : '-DBMCWEB_ENABLE_KVM' ,
74 'mutual-tls-auth' : '-DBMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION',
Ed Tanousf523c322021-12-03 10:46:48 -080075 'redfish-allow-deprecated-power-thermal' : '-DBMCWEB_ALLOW_DEPRECATED_POWER_THERMAL',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053076 'redfish-bmc-journal' : '-DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL',
77 'redfish-cpu-log' : '-DBMCWEB_ENABLE_REDFISH_CPU_LOG',
78 'redfish-dbus-log' : '-DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES',
79 'redfish-dump-log' : '-DBMCWEB_ENABLE_REDFISH_DUMP_LOG',
Ed Tanousf523c322021-12-03 10:46:48 -080080 'redfish-host-logger' : '-DBMCWEB_ENABLE_REDFISH_HOST_LOGGER',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053081 'redfish-new-powersubsystem-thermalsubsystem' : '-DBMCWEB_NEW_POWERSUBSYSTEM_THERMALSUBSYSTEM',
Ed Tanousf523c322021-12-03 10:46:48 -080082 'redfish-provisioning-feature' : '-DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE',
Ed Tanous4dc23f32022-05-11 11:32:19 -070083 'redfish-post-to-old-updateservice' : '-DBMCWEB_ENABLE_REDFISH_UPDATESERVICE_OLD_POST_URL',
Ed Tanousf523c322021-12-03 10:46:48 -080084 'redfish' : '-DBMCWEB_ENABLE_REDFISH',
85 'rest' : '-DBMCWEB_ENABLE_DBUS_REST',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053086 'session-auth' : '-DBMCWEB_ENABLE_SESSION_AUTHENTICATION',
87 'static-hosting' : '-DBMCWEB_ENABLE_STATIC_HOSTING',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053088 'vm-websocket' : '-DBMCWEB_ENABLE_VM_WEBSOCKET',
89 'xtoken-auth' : '-DBMCWEB_ENABLE_XTOKEN_AUTHENTICATION',
Ed Tanousf523c322021-12-03 10:46:48 -080090 #'vm-nbdproxy' : '-DBMCWEB_ENABLE_VM_NBDPROXY',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053091}
92
93# Get the options status and build a project summary to show which flags are
94# being enabled during the configuration time.
95
96foreach option_key,option_value : feature_map
97 if(get_option(option_key).enabled())
98 if(option_key == 'mutual-tls-auth' or option_key == 'insecure-disable-ssl')
99 if(get_option('insecure-disable-ssl').disabled() or get_option('mutual-tls-auth').disabled())
100 add_project_arguments(option_value,language:'cpp')
101 summary(option_key,option_value, section : 'Enabled Features')
102 endif
103 else
104 summary(option_key,option_value, section : 'Enabled Features')
105 add_project_arguments(option_value,language:'cpp')
106 endif
107 else
108 if(option_key == 'insecure-disable-ssl')
109 summary('ssl','-DBMCWEB_ENABLE_SSL', section : 'Enabled Features')
110 add_project_arguments('-DBMCWEB_ENABLE_SSL', language : 'cpp')
111 endif
112 endif
113endforeach
114
115if(get_option('tests').enabled())
116 summary('unittest','NA', section : 'Enabled Features')
117endif
118
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530119# Add compiler arguments
120
121# -Wpedantic, -Wextra comes by default with warning level
122add_project_arguments(
123 cxx.get_supported_arguments([
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530124 '-Wcast-align',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530125 '-Wconversion',
Ed Tanousf523c322021-12-03 10:46:48 -0800126 '-Wformat=2',
127 '-Wold-style-cast',
128 '-Woverloaded-virtual',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530129 '-Wsign-conversion',
Ed Tanousf523c322021-12-03 10:46:48 -0800130 '-Wunused',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530131 '-Wno-attributes',
132 ]),
133 language: 'cpp'
134)
135
136if (cxx.get_id() == 'clang' and cxx.version().version_compare('>9.0'))
137add_project_arguments(
138 cxx.get_supported_arguments([
139 '-Weverything',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530140 '-Wno-c++98-compat-pedantic',
Ed Tanousf523c322021-12-03 10:46:48 -0800141 '-Wno-c++98-compat',
142 '-Wno-documentation-unknown-command',
143 '-Wno-documentation',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530144 '-Wno-exit-time-destructors',
Ed Tanousf523c322021-12-03 10:46:48 -0800145 '-Wno-global-constructors',
146 '-Wno-newline-eof',
147 '-Wno-padded',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530148 '-Wno-shadow',
149 '-Wno-used-but-marked-unused',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530150 '-Wno-weak-vtables',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530151 ]),
152 language:'cpp')
153endif
154
155# if compiler is gnu-gcc , and version is > 8.0 then we add few more
156# compiler arguments , we know that will pass
157
158if (cxx.get_id() == 'gcc' and cxx.version().version_compare('>8.0'))
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530159 add_project_arguments(
160 cxx.get_supported_arguments([
161 '-Wduplicated-cond',
162 '-Wduplicated-branches',
163 '-Wlogical-op',
164 '-Wunused-parameter',
165 '-Wnull-dereference',
166 '-Wdouble-promotion',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530167 ]),
168 language:'cpp')
Ed Tanousc66403c2021-09-22 15:28:57 -0700169endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530170
Ed Tanousc66403c2021-09-22 15:28:57 -0700171if (get_option('buildtype') != 'plain')
172 if (get_option('b_lto') == true and get_option('optimization')!='0')
173 # Reduce the binary size by removing unnecessary
174 # dynamic symbol table entries
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530175
Ed Tanousc66403c2021-09-22 15:28:57 -0700176 add_project_arguments(
177 cxx.get_supported_arguments([
178 '-fno-fat-lto-objects',
179 '-fvisibility=hidden',
180 '-fvisibility-inlines-hidden'
181 ]),
182 language: 'cpp')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530183
Ed Tanousc66403c2021-09-22 15:28:57 -0700184 if cxx.has_link_argument('-Wl,--exclude-libs,ALL')
185 add_project_link_arguments('-Wl,--exclude-libs,ALL', language: 'cpp')
George Liue8204932021-02-01 14:42:49 +0800186 endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530187 endif
188endif
189
Ed Tanousc66403c2021-09-22 15:28:57 -0700190if( get_option('bmcweb-logging').enabled() or \
191 get_option('buildtype').startswith('debug'))
192 add_project_arguments([
193 '-DBMCWEB_ENABLE_LOGGING',
194 '-DBMCWEB_ENABLE_DEBUG'
195 ],
196 language : 'cpp')
197
198 summary({'debug' :'-DBMCWEB_ENABLE_DEBUG',
199 'logging' : '-DBMCWEB_ENABLE_LOGGING',
Ed Tanousc66403c2021-09-22 15:28:57 -0700200
Ed Tanousc66403c2021-09-22 15:28:57 -0700201 },section : 'Enabled Features')
202endif
203
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530204# Set Compiler Security flags
205
206security_flags = [
Ed Tanouscf2f9322021-09-22 15:34:41 -0700207 '-fstack-protector-strong',
208 '-fPIE',
209 '-fPIC',
210 '-D_FORTIFY_SOURCE=2',
211 '-Wformat',
212 '-Wformat-security'
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530213]
214
215## Add security flags for builds of type 'release','debugoptimized' and 'minsize'
216
217if not (get_option('buildtype') == 'plain' or get_option('buildtype').startswith('debug'))
218 add_project_arguments(
219 cxx.get_supported_arguments([
220 security_flags
221 ]),
222 language: 'cpp')
223endif
224
225# Boost dependency configuration
226
227add_project_arguments(
228cxx.get_supported_arguments([
Ed Tanouscf2f9322021-09-22 15:34:41 -0700229 '-DBOOST_ALL_NO_LIB',
Ed Tanouscf2f9322021-09-22 15:34:41 -0700230 '-DBOOST_ALLOW_DEPRECATED_HEADERS',
Ed Tanousf523c322021-12-03 10:46:48 -0800231 '-DBOOST_ASIO_DISABLE_THREADS',
232 '-DBOOST_ASIO_NO_DEPRECATED',
233 '-DBOOST_ASIO_SEPARATE_COMPILATION',
234 '-DBOOST_BEAST_SEPARATE_COMPILATION',
235 '-DBOOST_BEAST_USE_STD_STRING_VIEW',
Ed Tanous9e710e72022-03-12 17:40:04 -0800236 '-DBOOST_EXCEPTION_DISABLE',
237 '-DJSON_NOEXCEPTION',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530238]),
239language : 'cpp')
240
241# Find the dependency modules, if not found use meson wrap to get them
242# automatically during the configure step
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800243bmcweb_dependencies = []
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530244
Nan Zhou8682c5a2021-11-13 11:00:07 -0800245pam = cxx.find_library('pam', required: true)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530246atomic = cxx.find_library('atomic', required: true)
247openssl = dependency('openssl', required : true)
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800248bmcweb_dependencies += [pam, atomic, openssl]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530249
Ed Tanous7bb985e2021-09-02 14:31:40 -0700250sdbusplus = dependency('sdbusplus', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530251if not sdbusplus.found()
252 sdbusplus_proj = subproject('sdbusplus', required: true)
253 sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep')
254 sdbusplus = sdbusplus.as_system('system')
255endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800256bmcweb_dependencies += sdbusplus
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530257
258if get_option('rest').enabled()
Patrick Williams565c0912021-10-12 20:22:45 -0500259 tinyxml = dependency('tinyxml2',
260 default_options: ['tests=false'],
261 include_type: 'system',
262 )
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800263 bmcweb_dependencies += tinyxml
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530264endif
265
266systemd = dependency('systemd')
267zlib = dependency('zlib')
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800268bmcweb_dependencies += [systemd, zlib]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530269
270if cxx.has_header('nlohmann/json.hpp')
271 nlohmann_json = declare_dependency()
272else
Josh Lehan259df352021-10-07 15:20:02 -0700273 nlohmann_json_proj = subproject('nlohmann', required: true)
274 nlohmann_json = nlohmann_json_proj.get_variable('nlohmann_json_dep')
Ed Tanousb00dcc22021-02-23 12:52:50 -0800275 nlohmann_json = nlohmann_json.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530276endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800277bmcweb_dependencies += nlohmann_json
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530278
Nan Zhou6bbda2c2022-02-21 12:47:41 -0800279boost = dependency('boost',version : '>=1.78.0', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530280if not boost.found()
281 subproject('boost', required: false)
Nan Zhou6bbda2c2022-02-21 12:47:41 -0800282 boost_inc = include_directories('subprojects/boost_1_78_0/', is_system:true)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530283 boost = declare_dependency(include_directories : boost_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800284 boost = boost.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530285endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800286bmcweb_dependencies += boost
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530287
288if cxx.has_header('boost/url/url_view.hpp')
289 boost_url = declare_dependency()
290else
291 subproject('boost-url', required: false)
292 boost_url_inc = include_directories('subprojects/boost-url/include', is_system:true)
293 boost_url= declare_dependency(include_directories : boost_url_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800294 boost_url = boost_url.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530295endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800296bmcweb_dependencies += boost_url
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530297
298if get_option('tests').enabled()
299 gtest = dependency('gtest', main: true,disabler: true, required : false)
300 gmock = dependency('gmock', required : false)
301 if not gtest.found() and get_option('tests').enabled()
302 gtest_proj = subproject('gtest', required: true)
303 gtest = gtest_proj.get_variable('gtest_main_dep')
304 gmock = gtest_proj.get_variable('gmock_dep')
305 endif
Ed Tanousb00dcc22021-02-23 12:52:50 -0800306 gtest = gtest.as_system('system')
307 gmock = gmock.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530308endif
309
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530310# Gather the Configuration data
311
312conf_data = configuration_data()
Ed Tanous0260d9d2021-02-07 19:31:07 +0000313conf_data.set('BMCWEB_HTTP_REQ_BODY_LIMIT_MB', get_option('http-body-limit'))
314xss_enabled = get_option('insecure-disable-xss')
Ed Tanousfeaf1502021-02-23 08:53:50 -0800315conf_data.set10('BMCWEB_INSECURE_DISABLE_XSS_PREVENTION', xss_enabled.enabled())
Ed Tanousfa0b2172022-03-24 10:25:03 -0700316enable_redfish_query = get_option('insecure-enable-redfish-query')
317conf_data.set10('BMCWEB_INSECURE_ENABLE_QUERY_PARAMS', enable_redfish_query.enabled())
Ed Tanouseb1c47d2022-02-09 11:47:27 -0800318insecure_push_style_notification = get_option('insecure-push-style-notification')
319conf_data.set10('BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING', insecure_push_style_notification.enabled())
Ed Tanous0260d9d2021-02-07 19:31:07 +0000320conf_data.set('MESON_INSTALL_PREFIX', get_option('prefix'))
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700321conf_data.set('HTTPS_PORT', get_option('https_port'))
Ed Tanous75312982021-02-11 14:26:02 -0800322configure_file(input: 'bmcweb_config.h.in',
323 output: 'bmcweb_config.h',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530324 configuration: conf_data)
325
326# Configure and install systemd unit files
327
Patrick Williams6a779932021-10-12 20:08:44 -0500328systemd_system_unit_dir = systemd.get_variable(pkgconfig: 'systemdsystemunitdir')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530329
330bindir = get_option('prefix') + '/' +get_option('bindir')
331
332summary({
333 'prefix' : get_option('prefix'),
334 'bindir' : bindir,
335 'systemd unit directory' : systemd_system_unit_dir
336 }, section : 'Directories')
337
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700338configure_file(input : 'bmcweb.socket.in',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530339 output : 'bmcweb.socket',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530340 install_dir: systemd_system_unit_dir,
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700341 configuration: conf_data,
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530342 install : true)
343
344configure_file(input : 'bmcweb.service.in',
345 output : 'bmcweb.service',
346 install_dir: systemd_system_unit_dir,
347 configuration: conf_data,
348 install : true)
349
350# Copy pam-webserver to etc/pam.d
351configure_file(input : 'pam-webserver',
352 output : 'webserver',
353 copy : true,
354 install_dir: '/etc/pam.d',
355 install : true)
356
357install_subdir('static', install_dir : 'share/www', strip_directory : true)
358
Ed Tanous02f1cd92021-10-27 12:09:06 -0700359# Source files
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530360
Ed Tanous02f1cd92021-10-27 12:09:06 -0700361srcfiles_bmcweb = [
362 'redfish-core/src/error_messages.cpp',
363 'redfish-core/src/utils/json_utils.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700364 'src/boost_asio_ssl.cpp',
Ed Tanousf523c322021-12-03 10:46:48 -0800365 'src/boost_asio.cpp',
366 'src/boost_beast.cpp',
367 'src/boost_url.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700368]
369
370# Generate the bmcweb executable
371executable(
372 'bmcweb',
373 srcfiles_bmcweb + ['src/webserver_main.cpp'],
374 include_directories : incdir,
375 dependencies: bmcweb_dependencies,
376 link_args: '-Wl,--gc-sections',
377 install: true,
378 install_dir:bindir
379)
380
381srcfiles_unittest = [
Ed Tanousf523c322021-12-03 10:46:48 -0800382 'http/ut/utility_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700383 'include/ut/dbus_utility_test.cpp',
384 'include/ut/http_utility_test.cpp',
385 'include/ut/human_sort_test.cpp',
Ed Tanousc5ba4c22022-02-07 09:59:55 -0800386 'include/ut/multipart_test.cpp',
Josh Lehan482c45a2022-03-29 17:10:44 -0700387 'include/ut/openbmc_dbus_rest_test.cpp',
Ed Tanous7cf436c2022-03-22 23:53:51 -0700388 'redfish-core/include/utils/query_param_test.cpp',
389 'redfish-core/lib/ut/service_root_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700390 'redfish-core/ut/configfile_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700391 'redfish-core/ut/hex_utils_test.cpp',
Willy Tu15ed6782021-12-14 11:03:16 -0800392 'redfish-core/ut/json_utils_test.cpp',
Ed Tanousf523c322021-12-03 10:46:48 -0800393 'redfish-core/ut/lock_test.cpp',
394 'redfish-core/ut/privileges_test.cpp',
Ed Tanousc5ba4c22022-02-07 09:59:55 -0800395 'redfish-core/ut/registries_test.cpp',
Ed Tanousf523c322021-12-03 10:46:48 -0800396 'redfish-core/ut/stl_utils_test.cpp',
397 'redfish-core/ut/time_utils_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700398]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530399
400if(get_option('tests').enabled())
Ed Tanous02f1cd92021-10-27 12:09:06 -0700401 # generate the test executable
402 ut_bin = executable(
403 'bmcweb_unit_test',
404 srcfiles_unittest + srcfiles_bmcweb,
405 include_directories : incdir,
406 install_dir: bindir,
407 dependencies: bmcweb_dependencies + [
408 gtest,
409 gmock,
410 ]
411 )
412 test('bmcweb_unit_test', ut_bin)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530413endif